diff options
Diffstat (limited to 'frontend/lb')
-rwxr-xr-x | frontend/lb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/lb b/frontend/lb index 0e826d989..f2015b033 100755 --- a/frontend/lb +++ b/frontend/lb @@ -20,7 +20,7 @@ USAGE="lb {clean|config|build}" case "${1}" in -h|--help) - if [ -x "$(which man 2>/dev/null)" ] + if [ $(which man) ] then man lb exit 0 @@ -75,7 +75,7 @@ case "${1}" in then # User has live-build installed in the system SCRIPT=/usr/lib/live/build/"${COMMAND}" - elif [ -x "$(which ${COMMAND} 2>/dev/null)" ] + elif [ $(which "${COMMAND}") ] then # User has live-build commands in path SCRIPT="${COMMAND}" |