From a3300aed3150fa75e72733843fb2f3c01d237025 Mon Sep 17 00:00:00 2001 From: gmorenz Date: Wed, 14 Feb 2024 17:28:29 -0500 Subject: [PATCH] Don't reinstall dependencies on arch linux (#7801) Very minor quality of life update, passing the --needed flag to pacman to skip reinstalling up to date dependencies. Release Notes: - N/A --- script/linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/linux b/script/linux index 2431d22052..e2929133a1 100755 --- a/script/linux +++ b/script/linux @@ -38,7 +38,7 @@ if [[ -n $pacman ]]; then fontconfig vulkan-validation-layers ) - $maysudo "$pacman" -S --noconfirm "${deps[@]}" + $maysudo "$pacman" -S --needed --noconfirm "${deps[@]}" exit 0 fi