mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +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)
|
arch=$(uname -m)
|
||||||
|
|
||||||
case $arch in
|
case $arch in
|
||||||
"i?86")
|
i?86)
|
||||||
arch="i586"
|
arch="i586"
|
||||||
echo "Your arch is $arch"
|
echo "Your arch is $arch"
|
||||||
;;
|
;;
|
||||||
"x86_64")
|
x86_64)
|
||||||
arch="x86_64"
|
arch="x86_64"
|
||||||
echo "Your arch is $arch"
|
echo "Your arch is $arch"
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user