Skip to content

Commit

Permalink
fix: uninitialized variable RUNNER_DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Oct 4, 2023
1 parent e21ce6f commit fdac069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ execute_shellcheck () {
# Function to check if the action is run in a Debug mode
is_debug () {
local result
result=$(is_true "${RUNNER_DEBUG}")
result=$(is_true "${RUNNER_DEBUG:-0}")

# shellcheck disable=SC2086
# return require numeric value
Expand Down

0 comments on commit fdac069

Please sign in to comment.