From: Jonatan Schlag Date: Tue, 3 Jan 2017 16:49:06 +0000 (+0100) Subject: Fix the backup iso script once again. X-Git-Tag: v2.19-core109^2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1b6e9f396efca5552df649d04a12bdbd1c4acb5;p=people%2Fstevee%2Fipfire-2.x.git Fix the backup iso script once again. In commit 391560854f64ad2385adb3ff25dbbcec0ff92668 was an error in the case statement. On i?586 the check fails. Removing the "" fixes the error. Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer --- diff --git a/src/scripts/backupiso b/src/scripts/backupiso index 1a682d0164..1799bc1b12 100644 --- a/src/scripts/backupiso +++ b/src/scripts/backupiso @@ -2,11 +2,11 @@ arch=$(uname -m) case $arch in - "i?86") + i?86) arch="i586" echo "Your arch is $arch" ;; - "x86_64") + x86_64) arch="x86_64" echo "Your arch is $arch" ;;