From 5f08341c9b83dc25e471a914b4faa325941fe055 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 7639b28310481f3b5c9c87c5d92914afee2f607e..fe729008060f16f5af0de66b41f23c8faad3cd7d 100755 --- a/script/linux +++ b/script/linux @@ -32,6 +32,7 @@ if [[ -n $apt ]]; then elfutils libsqlite3-dev ) + $maysudo "$apt" update $maysudo "$apt" install -y "${deps[@]}" exit 0 fi