verbosity fixes
This commit is contained in:
parent
0b8d27c1fb
commit
d16fac0b56
@ -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…
Reference in New Issue
Block a user