From: Michael Prokop Date: Tue, 23 Apr 2013 14:08:09 +0000 (+0200) Subject: grml2iso: provide more user-friendly error message if grml2usb executable is not... X-Git-Tag: v0.13.6~2 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=62acdab01523c26b167683c74b1feb19173665fc;ds=sidebyside grml2iso: provide more user-friendly error message if grml2usb executable is not available --- diff --git a/grml2iso b/grml2iso index 8f4d7b8..a2ef849 100755 --- a/grml2iso +++ b/grml2iso @@ -129,7 +129,8 @@ Options: # check for grml2usb {{{ if [ ! -x "$(which $GRML2USB)" ] && [ ! -x "$GRML2USB" ] ; then - echo >&2 "Error: Could not find grml2usb" + echo "Error: Could not find grml2usb executable. Is /usr/sbin missing in PATH?" >&2 + echo "Tip: run GRML2USB=/usr/sbin/grml2usb grml2iso ... as workaround" >&2 if [ -x "./$GRML2USB" ] ; then echo >&2 "If you executed grml2iso from the grml2usb repository use" echo >&2 "GRML2USB=./grml2usb $0 $*"