ソースを参照

[fix] manage.sh return with actions exit status

Adam Tauber 9 年 前
コミット
dbf4f83231
共有1 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 3
    3
      manage.sh

+ 3
- 3
manage.sh ファイルの表示

@@ -90,6 +90,6 @@ Commands
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