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 f0168ae commit 9eb3371Copy full SHA for 9eb3371
juhpc
@@ -28,8 +28,8 @@ print_logo() {
28
29
info() {
30
local message="$1"
31
- local verbosity="${2:-0}" # Default to 0 if not provided
32
- if [[ "$JUHPC_VERBOSE" -ge "$verbosity" ]]; then
+ local verbose_min="${2:-0}" # Default to 0 if not provided
+ if [[ "$JUHPC_VERBOSE" -ge "$verbose_min" ]]; then
33
echo -e "$JUHPC $message" >&2
34
fi
35
echo -e "$JUHPC $message" >> "$TMP_JULIAUP_LOG"
0 commit comments