From: Michael Prokop Date: Mon, 4 Jan 2010 17:03:25 +0000 (+0100) Subject: Fix architecture option in error message (-a instead of -i). X-Git-Tag: v0.9.34~26 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=0e514fe972be60a3713e49684851774924e13fc5;hp=f54d3bf9ffc50d4e26a564c073bb03185b0126dd Fix architecture option in error message (-a instead of -i). --- diff --git a/grml-live b/grml-live index 186f092..39952b7 100755 --- a/grml-live +++ b/grml-live @@ -442,7 +442,7 @@ if echo $CLASSES | grep -qi i386 ; then if ! [[ "$ARCH" == "i386" ]] ; then log "Error: You specified the I386 class but are trying to build something else (AMD64?)." eerror "Error: You specified the I386 class but are trying to build something else (AMD64?)." - eerror "Tip: Either invoke grml-live with '-i i386' or adjust the architecture class. Exiting." + eerror "Tip: Either invoke grml-live with '-a i386' or adjust the architecture class. Exiting." eend 1 bailout fi @@ -450,7 +450,7 @@ elif echo $CLASSES | grep -qi amd64 ; then if ! [[ "$ARCH" == "amd64" ]] ; then log "Error: You specified the AMD64 class but are trying to build something else (I386?)." eerror "Error: You specified the AMD64 class but are trying to build something else (I386?)." - eerror "Tip: Either invoke grml-live with '-i amd64' or adjust the architecture class. Exiting." + eerror "Tip: Either invoke grml-live with '-a amd64' or adjust the architecture class. Exiting." eend 1 bailout fi