We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c94475 commit b45c125Copy full SHA for b45c125
arduino-ci-script.sh
@@ -50,12 +50,12 @@ function set_script_verbosity()
50
ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL=1
51
fi
52
53
- if [[ "$ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL" == 1 ]]; then
+ if [[ "$ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL" -eq 1 ]]; then
54
ARDUINO_CI_SCRIPT_VERBOSITY_OPTION="--verbose"
55
ARDUINO_CI_SCRIPT_QUIET_OPTION=""
56
# Show stderr only
57
ARDUINO_CI_SCRIPT_VERBOSITY_REDIRECT="1>/dev/null"
58
- elif [[ "$ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL" == 2 ]]; then
+ elif [[ "$ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL" -eq 2 ]]; then
59
60
61
# Show stdout and stderr
0 commit comments