Skip to content

Commit

Permalink
The $RUNNER_DEBUG (UI) turns on set -x verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Sep 6, 2024
1 parent dd413fb commit 6300ab3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion container/cmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ is_true() {
esac
}

is_true "$INPUT_DEBUG" && set -x
if is_true "$INPUT_DEBUG" || is_true "$RUNNER_DEBUG"; then
set -x
fi

linter_options=()
set_linter_options()
Expand Down

0 comments on commit 6300ab3

Please sign in to comment.