Skip to content

Commit

Permalink
podvm: disable set -x by default
Browse files Browse the repository at this point in the history
to avoid unwanted printings

Signed-off-by: Snir Sheriber <ssheribe@redhat.com>
  • Loading branch information
snir911 committed Jul 24, 2024
1 parent 93432fc commit ba4dad2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion config/peerpods/podvm/aws-podvm-image-handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
# Create image (-c)
# Delete image (-C)

set -x
[[ "$DEBUG" == "true" ]] && set -x

# include common functions from lib.sh
# shellcheck source=/dev/null
# The directory is where aws-podvm-image-handler.sh is located
Expand Down
2 changes: 1 addition & 1 deletion config/peerpods/podvm/azure-podvm-image-handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Create image version (-i)
# Delete image version (-I)

set -x
[[ "$DEBUG" == "true" ]] && set -x

# include common functions from lib.sh
# shellcheck source=/dev/null
Expand Down
2 changes: 1 addition & 1 deletion config/peerpods/podvm/lib.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Contains common functions used by the scripts

set -x
[[ "$DEBUG" == "true" ]] && set -x

# Defaults for pause image
# This pause image is multi-arch
Expand Down

0 comments on commit ba4dad2

Please sign in to comment.