Properly catch errors even when we use --verbose

The usage of the pipe did hide errors from us when we were using
--verbose. We use a bashism to detect failures in pipes so update
the shebang accordingly.
debian-cd
Raphaël Hertzog 10 years ago
parent 74223094c2
commit a76b36ec0b

@ -23,15 +23,15 @@ while [ $# -gt 0 ]; do
temp="$temp "'"'"$2"'"'
shift
;;
--proposed-updates)
-p|--proposed-updates)
enable_pu="1"
;;
--kali-dev)
-d|--kali-dev)
dist="kali-dev"
# No security repo
lb_opts="--security false --initsystem systemd"
;;
--kali-rolling)
-r|--kali-rolling)
dist="kali-rolling"
lb_opts="--initsystem systemd"
;;

@ -1,6 +1,7 @@
#!/bin/sh
#!/bin/bash
set -e
set -o pipefail # Bashism
KALI_DIST=kali
KALI_VERSION="${VERSION:-daily}"
@ -37,6 +38,7 @@ run_and_log() {
else
"$@" >>build.log 2>&1
fi
return $?
}
# Parsing command line options

Loading…
Cancel
Save