debootstrap: fix syntax issues

There's no need for 'break' to exit a switch case, ';;' will work fine.

Change-Id: I4f23c80422a3c1dbd0db3972854ae67e38fc7be8
This commit is contained in:
Pino Toscano 2015-05-05 11:00:10 +02:00
parent c5c6a5f4f2
commit 3ec833806f

View File

@ -32,12 +32,11 @@ if [ $DISTRO_NAME = 'ubuntu' ] ; then
KERNEL='generic'
else
case $ARCH in
amd64) KERNEL='amd64' ; break ;;
i386) KERNEL='686' ; break ;;
amd64) KERNEL='amd64' ;;
i386) KERNEL='686' ;;
arm7)
[ -n "$DIB_ARM_KERNEL" ]
KERNEL="$DIB_ARM_KERNEL"
break
;;
esac
fi