From 2fd37052a8db8526b7c119a47206f052f0786306 Mon Sep 17 00:00:00 2001 From: Sergio Visinoni Date: Fri, 8 May 2026 17:11:00 +0200 Subject: [PATCH] Document the -s flag in help output The script support a "-s" flag to skip using sudo on Linux systems, but the flag is not documented in the output of the -h command. --- tools/install_builder_prerequisites.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/install_builder_prerequisites.sh b/tools/install_builder_prerequisites.sh index 0f1df7d2528..ae121a23d5f 100755 --- a/tools/install_builder_prerequisites.sh +++ b/tools/install_builder_prerequisites.sh @@ -26,6 +26,7 @@ function usage echo " -y: Assume 'yes' instead of showing confirmation prompts" echo " -p: Skip checking paths" echo " -r: Number of retries to perform for network operations (default: 3)" + echo " -s: Skip using sudo on Linux systems" exit 1 }