From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH] Fix the backup iso script once again. Date: Tue, 03 Jan 2017 17:49:06 +0100 Message-ID: <1483462146-638-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0753231603925449617==" List-Id: --===============0753231603925449617== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 --- 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 --===============0753231603925449617==--