From def82dc42f527c6a1d6b4a503aad18575070e0a7 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman Date: Wed, 12 Feb 2025 20:31:03 -0300 Subject: [PATCH] Fix verbosity --- infra/scenarios/run_test_scenario.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/scenarios/run_test_scenario.sh b/infra/scenarios/run_test_scenario.sh index c2c0db4cd..0ff6e1bc3 100755 --- a/infra/scenarios/run_test_scenario.sh +++ b/infra/scenarios/run_test_scenario.sh @@ -61,7 +61,7 @@ do a) RUN_ALL="Y" ; export SKIP_GIT_TEST="True" ;; k) SHUTDOWN="YES" ;; m) MODULES+=("${OPTARG}") ;; - v) VERBOSITY=$(VERBOSITY + 1) ;; + v) VERBOSITY=$((VERBOSITY + 1)) ;; *) die "Invalid option: ${option}" ;; esac done