Fix formatting

merge-requests/16/head
Ben Wilson 4 years ago
parent d6dadb2c18
commit 360ee78992

@ -106,6 +106,8 @@ debug() {
if [ -n "$DEBUG" ]; then if [ -n "$DEBUG" ]; then
echo "DEBUG: $*" >&2 echo "DEBUG: $*" >&2
fi fi
}
clean() { clean() {
debug "Cleaning" debug "Cleaning"
@ -124,6 +126,7 @@ BUILD_LOG=$(pwd)/build.log
debug "BUILD_LOG: $BUILD_LOG" debug "BUILD_LOG: $BUILD_LOG"
# Create empty file # Create empty file
: > $BUILD_LOG : > $BUILD_LOG
# Parsing command line options (see .getopt.sh) # Parsing command line options (see .getopt.sh)
temp=$(getopt -o "$BUILD_OPTS_SHORT" -l "$BUILD_OPTS_LONG,get-image-path" -- "$@") temp=$(getopt -o "$BUILD_OPTS_SHORT" -l "$BUILD_OPTS_LONG,get-image-path" -- "$@")
eval set -- "$temp" eval set -- "$temp"
@ -270,7 +273,6 @@ debug "IMAGE_NAME: $IMAGE_NAME"
# Don't quit on any errors now # Don't quit on any errors now
set +e set +e
case "$IMAGE_TYPE" in case "$IMAGE_TYPE" in
live) live)
if [ "$NO_CLEAN" = "" ]; then if [ "$NO_CLEAN" = "" ]; then

Loading…
Cancel
Save