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
`-e`: exits upon encountering any error, usually with rc 1
`-u`: exits upon encountering any unset variables; not applicable here, but a good practise nonetheless
`-o pipefail`: enables the `pipefail` option which terminates a pipeline upon encountering an error in any of its steps
`-x`: repeats shell commands as they are executed, i.e. "shell tracing"
0 commit comments