diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-11-22 14:49:04 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-11-22 14:59:40 -0500 |
commit | f2e69a3703f97725fb0db626ff592a223e22b3a2 (patch) | |
tree | 659c1bcef67becc59cbf4ab9ab9836de517f8070 /scripts/ci-install.sh | |
parent | d6494ffed57c108c9ab8345a1e3c6bc38557bc0a (diff) | |
download | kutter-f2e69a3703f97725fb0db626ff592a223e22b3a2.tar.gz kutter-f2e69a3703f97725fb0db626ff592a223e22b3a2.tar.xz kutter-f2e69a3703f97725fb0db626ff592a223e22b3a2.zip |
ci-install: Run 'apt-get update' prior to 'apt-get install'
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/ci-install.sh')
-rwxr-xr-x | scripts/ci-install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ci-install.sh b/scripts/ci-install.sh index f5a18612..470bab46 100755 --- a/scripts/ci-install.sh +++ b/scripts/ci-install.sh @@ -20,6 +20,7 @@ PKGS="virtualenv python2-dev libffi-dev build-essential" PKGS="${PKGS} gcc-avr avr-libc" PKGS="${PKGS} libnewlib-arm-none-eabi gcc-arm-none-eabi binutils-arm-none-eabi" PKGS="${PKGS} pv libmpfr-dev libgmp-dev libmpc-dev texinfo bison flex" +sudo apt-get update sudo apt-get install ${PKGS} |