From 3615d40b134e3186365c4fa2d05f673bfefb14ec Mon Sep 17 00:00:00 2001 From: Barajeel <0xsilomir@gmail.com> Date: Tue, 1 Apr 2025 22:50:29 +0300 Subject: [PATCH] fix: incorrect getopt parsing for `--quiet` flag --- scripts/for_all_contracts_exec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/for_all_contracts_exec.sh b/scripts/for_all_contracts_exec.sh index 5abef4a8664..a405af6367e 100755 --- a/scripts/for_all_contracts_exec.sh +++ b/scripts/for_all_contracts_exec.sh @@ -48,7 +48,7 @@ shopt -s globstar command=( "${@:2}" ) -options=$(getopt -o p:i:q: --long path:,ignore:,quiet:,partition: -- "$@") +options=$(getopt -o p:i:q --long path:,ignore:,quiet,partition: -- "$@") [ $? -eq 0 ] || { >&2 echo "Incorrect option provided" usage