public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Fix the backup iso script once again.
@ 2017-01-03 16:49 Jonatan Schlag
  2017-01-04 11:28 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Jonatan Schlag @ 2017-01-03 16:49 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 644 bytes --]

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(a)ipfire.org>
---
 src/scripts/backupiso | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/scripts/backupiso b/src/scripts/backupiso
index 1a682d0..1799bc1 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"
 		;;
-- 
2.1.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-01-04 11:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-03 16:49 [PATCH] Fix the backup iso script once again Jonatan Schlag
2017-01-04 11:28 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox