X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=blobdiff_plain;f=usr_bin%2Fgrml-exec-wrapper;h=5466d024e0a625c54b13961b3a48296334aafa12;hp=cd51cae50d5135bc1987de93fa70c0f2c4f09703;hb=dcb6090b9e23b455fb7b043c340508e3373e6a40;hpb=d03a386825bd12fb95cf4b87572038102a7ee514 diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index cd51cae..5466d02 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -37,7 +37,6 @@ if [ -z "$1" ] ; then exit 1 fi -RC='0' PROG="$1" # make sure to support 'grml-exec-wrapper sudo wireshark' as well: @@ -47,9 +46,9 @@ esac if is_installed "$PROG" ; then exec "$@" -else - RC=1 - display_info "Sorry: ${PROG} not available. +fi + +display_info "Sorry: ${PROG} not available. Looks like the grml flavour you are using does not ship ${PROG}. :( @@ -57,8 +56,7 @@ You can search for ${PROG} executing: apt-get update && apt-cache search ${PROG} " -fi -exit $RC +exit 1 ## END OF FILE #################################################################