[fix] manage.sh return with actions exit status

This commit is contained in:
Adam Tauber 2016-03-17 21:43:31 +01:00
parent 1d5afa4ccc
commit dbf4f83231
1 changed files with 3 additions and 3 deletions

View File

@ -90,6 +90,6 @@ Commands
"
}
[ "$(command -V "$ACTION" | grep ' function$')" != "" ] \
&& $ACTION \
|| help "action not found"
[ "$(command -V "$ACTION" | grep ' function$')" = "" ] \
&& help "action not found" \
|| $ACTION