Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`writeShellApplication` has `[ "errexit" "nounset" "pipefail" ]` set for its `bashOptions` parameter. This sets these at the top of every generated script. The error message `"no template specified"` is never printed since the script immediately dies because `${1}` isn't set and `nounset` is enabled. Excluding the option from the script generation allows the error message to print rather than just `result/bin/dvt: line 6: 1: unbound variable` which isn't helpful.
- Loading branch information