example fix 'bug, not using errtrace when using VERBOSE'

#1088
pull/1/head
Patrick Schleizer 9 years ago
parent 7914ed795c
commit 995c98e512

@ -1,5 +1,9 @@
#!/bin/sh
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
set -x
fi
# ------------------------------------------------------------------------------
# Configurations and Conditionals
# ------------------------------------------------------------------------------
@ -10,11 +14,7 @@ export LC_ALL=POSIX
. ./builder_setup >/dev/null
. ./umount_kill.sh >/dev/null
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
set -x
else
set -e
fi
set -e
if [ $# -eq 0 ]; then
echo "usage $0 <clean_image_file> <template_name>"

Loading…
Cancel
Save