From 62acdab01523c26b167683c74b1feb19173665fc Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Tue, 23 Apr 2013 16:08:09 +0200 Subject: [PATCH] grml2iso: provide more user-friendly error message if grml2usb executable is not available --- grml2iso | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 $*" -- 2.1.4