mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-16 22:13:01 +02:00
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:
committed by
Michael Tremer
parent
391560854f
commit
b1b6e9f396
@@ -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"
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user