Swap spaces for tabs

To make it more consistent
merge-requests/16/head
Ben 4 years ago
parent de6a0ee0d1
commit 93c9188c34

@ -76,11 +76,11 @@ target_build_log() {
default_version() { default_version() {
case "$1" in case "$1" in
kali-*) kali-*)
echo "${1#kali-}" echo "${1#kali-}"
;; ;;
*) *)
echo "$1" echo "$1"
;; ;;
esac esac
} }
@ -120,7 +120,7 @@ while true; do
--no-clean) NO_CLEAN="1"; shift 1 ;; --no-clean) NO_CLEAN="1"; shift 1 ;;
--) shift; break; ;; --) shift; break; ;;
*) echo "ERROR: Invalid command-line option: $1" >&2; exit 1; ;; *) echo "ERROR: Invalid command-line option: $1" >&2; exit 1; ;;
esac esac
done done
# Set default values # Set default values
@ -253,14 +253,14 @@ case "$IMAGE_TYPE" in
export DEBVERSION=$KALI_VERSION export DEBVERSION=$KALI_VERSION
if [ "$KALI_VARIANT" = "netinst" ]; then if [ "$KALI_VARIANT" = "netinst" ]; then
export DISKTYPE="NETINST" export DISKTYPE="NETINST"
else else
export DISKTYPE="DVD" export DISKTYPE="DVD"
fi fi
if [ -e .mirror ]; then if [ -e .mirror ]; then
kali_mirror=$(cat .mirror) kali_mirror=$(cat .mirror)
else else
kali_mirror=http://archive.kali.org/kali/ kali_mirror=http://archive.kali.org/kali/
fi fi
if ! echo "$kali_mirror" | grep -q '/$'; then if ! echo "$kali_mirror" | grep -q '/$'; then
kali_mirror="$kali_mirror/" kali_mirror="$kali_mirror/"
@ -283,12 +283,12 @@ case "$IMAGE_TYPE" in
# Run simple-cdd # Run simple-cdd
cd simple-cdd cd simple-cdd
run_and_log build-simple-cdd \ run_and_log build-simple-cdd \
--verbose \ --verbose \
--debug \ --debug \
--force-root \ --force-root \
--conf simple-cdd.conf \ --conf simple-cdd.conf \
--dist $CODENAME \ --dist $CODENAME \
--debian-mirror $kali_mirror --debian-mirror $kali_mirror
res=$? res=$?
cd .. cd ..
if [ $res -ne 0 ] || [ ! -e $IMAGE_NAME ]; then if [ $res -ne 0 ] || [ ! -e $IMAGE_NAME ]; then

Loading…
Cancel
Save