From ab9d347510753bfb09503f660db59da63fc16666 Mon Sep 17 00:00:00 2001 From: josch Date: Thu, 30 Jun 2011 08:49:28 +0200 Subject: [PATCH] solve some whitespace issues --- polystrap.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/polystrap.sh b/polystrap.sh index 6e9c9a3..6b061dc 100755 --- a/polystrap.sh +++ b/polystrap.sh @@ -33,9 +33,9 @@ export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true LC_ALL=C export PATH=$PATH:/usr/sbin:/sbin if [ "$FAKEROOTKEY" = "" ]; then - echo "I: re-executing script inside fakeroot" >&2 - fakeroot "$0" "$@"; - exit + echo "I: re-executing script inside fakeroot" >&2 + fakeroot "$0" "$@"; + exit fi while getopts s:a:d:m:p: opt; do @@ -98,7 +98,7 @@ echo "I: create multistrap.conf" >&2 MULTISTRAPCONF=`tempfile -d . -p multistrap` echo -n > "$MULTISTRAPCONF" while read line; do - eval echo $line >> "$MULTISTRAPCONF" + eval echo $line >> "$MULTISTRAPCONF" done < $PLATFORM/multistrap.conf # download and extract packages @@ -143,9 +143,9 @@ fi # run preinst scripts for script in $ROOTDIR/var/lib/dpkg/info/*.preinst; do - [ "$script" = "$ROOTDIR/var/lib/dpkg/info/bash.preinst" ] && continue + [ "$script" = "$ROOTDIR/var/lib/dpkg/info/bash.preinst" ] && continue echo "I: run preinst script ${script##$ROOTDIR}" >&2 - fakechroot chroot $ROOTDIR ${script##$ROOTDIR} install + fakechroot chroot $ROOTDIR ${script##$ROOTDIR} install done # run dpkg --configure -a twice because of errors during the first run