Skip to content

Commit

Permalink
Fix verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed Feb 12, 2025
1 parent 47efbcf commit def82dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/scenarios/run_test_scenario.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit def82dc

Please sign in to comment.