You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Script lines of local task's which are failing are completely ignored and continues the script execution, which is a different behavior than a task executed via ssh
Envoy Version
2.8.6
Laravel Version
10.25.0
PHP Version
8.1
Database Driver & Version
No response
Description
Script lines of local task's which are failing are completely ignored and continues the script execution, which is a different behavior than a task executed via ssh
Steps To Reproduce
Output
Only a direct
exit 1;
outside of parentesis seems to stop the rest of the executionSo the workaround seems to be adding
|| exit $?
after each line in a script, or starting the local scripts withset -e
The text was updated successfully, but these errors were encountered: