From 30ef7e62bfff3b2e4c5cdbeead502d5a0814c83e Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Wed, 18 Sep 2024 14:28:00 -0400 Subject: [PATCH] Fix arm buildjet (#18023) Run `apt-get update` before `apt-get install` on Linux. Hopefully will fix building on Linux Arm. --- script/linux | 1 + 1 file changed, 1 insertion(+) diff --git a/script/linux b/script/linux index d894d33ea8..eca3bf7f7d 100755 --- a/script/linux +++ b/script/linux @@ -33,6 +33,7 @@ if [[ -n $apt ]]; then elfutils libsqlite3-dev ) + $maysudo "$apt" update $maysudo "$apt" install -y "${deps[@]}" exit 0 fi