mamba-org / setup-micromamba

GitHub Action to set up micromamba
MIT License
97 stars 15 forks source link

Improve Shell Default Arguments #152

Closed mikemhenry closed 1 year ago

mikemhenry commented 1 year ago

Resolves #151

Advise users to use "bash -leo pipefail {0}" instead of "bash -l {0}" since without "-eo pipefail" errors can happen in a shell script, but keep CI running without an error. Most users will want a shell where if a pipe eats a non zero exit, the program propigates the error.

pavelzw commented 1 year ago

Thanks!