-
Notifications
You must be signed in to change notification settings - Fork 236
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
The script of the git-clone task starts with set -eu, which makes the shell interpreter exit immediately when a command exits with a non-zero status:
| set -eu |
Consequently, the bodies of all the if [ "${*_EXIT_CODE}" != "0" ] conditions are effectively dead code. For example, the git status command is never executed when a merge conflict occurs:
| git status |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working