Fix arm buildjet (#18023)

Run `apt-get update` before `apt-get install` on Linux. Hopefully will fix building on Linux Arm.
This commit is contained in:
Peter Tripp 2024-09-18 14:28:00 -04:00 committed by GitHub
parent 97dc1d193f
commit 30ef7e62bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,6 +33,7 @@ if [[ -n $apt ]]; then
elfutils
libsqlite3-dev
)
$maysudo "$apt" update
$maysudo "$apt" install -y "${deps[@]}"
exit 0
fi