Skip to content

Commit

Permalink
PMM-13487 Log debug messages by default when in CI env
Browse files Browse the repository at this point in the history
  • Loading branch information
ademidoff committed Dec 6, 2024
1 parent 7bbb980 commit 51e1432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/vars
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ vmagent_commit_hash=58ecb9066574f38f1d1c91ace467316e7f175b09
nomad_commit_hash=d92bf1014886c0ff9f882f4a2691d5ae8ad8131c

set -o errexit
if [ "${DEBUG_MODE:-0}" -eq 1 ]; then
if [ "${DEBUG_MODE:-0}" -eq 1 ] || [ -n "${CI:-}" ]; then
set -o xtrace
else
set +o xtrace
Expand Down

0 comments on commit 51e1432

Please sign in to comment.