diff options
Diffstat (limited to 'manage.sh')
-rwxr-xr-x | manage.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |