diff options
Diffstat (limited to '.app/lib/app-operate')
-rw-r--r-- | .app/lib/app-operate | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.app/lib/app-operate b/.app/lib/app-operate index 7789939..8c9692b 100644 --- a/.app/lib/app-operate +++ b/.app/lib/app-operate @@ -53,14 +53,15 @@ run_control() { set +x set -e - case $ret in - 0) - echo "Method ${method} completed successfully for $name/$instance" - ;; - *) - echo "Error running method ${method} for $name/$instance" - ;; - esac +# case $ret in +# 0) +# echo "Method ${method} completed successfully for $name/$instance" +# ;; +# *) +# echo "Error running method ${method} for $name/$instance" +# ;; +# esac + exit $ret ) } |