verbosity fixes

pull/1/head
Patrick Schleizer 9 years ago
parent 0b8d27c1fb
commit d16fac0b56
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

@ -1,5 +1,9 @@
#!/bin/bash
if [ "${VERBOSE}" -ge 2 -o "${DEBUG}" == "1" ]; then
set -x
fi
# ------------------------------------------------------------------------------
# Configurations
# ------------------------------------------------------------------------------
@ -10,11 +14,7 @@ RETCODE=0
: ${DIST=fc14}
if [ "${VERBOSE}" -ge 2 -o "${DEBUG}" == "1" ]; then
set -x
else
set -e
fi
set -e
. ./builder_setup >/dev/null
. ./umount_kill.sh >/dev/null

@ -24,6 +24,10 @@
# ./umount_kill.sh chroot-jessie
#
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
set -x
fi
. ./functions.sh
mountPoint() {

Loading…
Cancel
Save