Explorar el Código

[fix] manage.sh return with actions exit status

Adam Tauber hace 9 años
padre
commit
dbf4f83231
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3
    3
      manage.sh

+ 3
- 3
manage.sh Ver fichero

90
 "
90
 "
91
 }
91
 }
92
 
92
 
93
-[ "$(command -V "$ACTION" | grep ' function$')" != "" ] \
94
-    && $ACTION \
95
-    || help "action not found"
93
+[ "$(command -V "$ACTION" | grep ' function$')" = "" ] \
94
+    && help "action not found" \
95
+    || $ACTION