X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2iso;h=e84e2674cfd6f013e8cc9d989a4d2c63a1078ba6;hp=8f4d7b841965cc15f99032f8cabcfe9bd576c417;hb=5755759faac878a451d58d5f642209aab8cb45c7;hpb=9e7a48deb5c2046c7087e1f998748914b01b12be diff --git a/grml2iso b/grml2iso index 8f4d7b8..e84e267 100755 --- a/grml2iso +++ b/grml2iso @@ -91,7 +91,7 @@ Options: r) GRML2USB_OPTS+=(--remove-bootoption="$OPTARG");; p) GRML2USB_OPTS+=("$OPTARG");; s) URI="$OPTARG";; - t) WRKDIR="$OPTARG";; + t) WRKDIR="$(readlink -f "$OPTARG")";; ?) usage 2;; esac done @@ -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 $*"