]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
Fix the backup iso script once again.
authorJonatan Schlag <jonatan.schlag@ipfire.org>
Tue, 3 Jan 2017 16:49:06 +0000 (17:49 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 4 Jan 2017 11:21:28 +0000 (11:21 +0000)
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 <jonatan.schlag@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/scripts/backupiso

index 1a682d01645428f599fbc81e7befad93fcb05a9b..1799bc1b127e15861e6c42a0d89306e89d9dcff7 100644 (file)
@@ -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"
                ;;