Fix the backup iso script once again.

In commit 391560854f 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>
This commit is contained in:
Jonatan Schlag
2017-01-03 17:49:06 +01:00
committed by Michael Tremer
parent 391560854f
commit b1b6e9f396

View 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"
;;