diff options
| author | penguin <penguin@epenguin.net> | 2025-12-14 21:36:55 -0600 |
|---|---|---|
| committer | penguin <penguin@epenguin.net> | 2025-12-14 21:40:50 -0600 |
| commit | f7f17514a66d52a4acdf0ec9454cfa32a9587dbc (patch) | |
| tree | 5521ba916632c0db8f1b530c485c78327fff1a1b | |
| parent | eac300343d0b0a9400b774e8e583df0e23662b4d (diff) | |
| download | gentoo-utils-f7f17514a66d52a4acdf0ec9454cfa32a9587dbc.tar.gz | |
ci: fix some instances of failing commands not failing jobs
ci: fix some rare instances of commands failing because TERM wasnt set
| -rw-r--r-- | .gitea/workflows/gentoo-utils.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitea/workflows/gentoo-utils.yml b/.gitea/workflows/gentoo-utils.yml index 056daa6..1fc4911 100644 --- a/.gitea/workflows/gentoo-utils.yml +++ b/.gitea/workflows/gentoo-utils.yml @@ -4,7 +4,11 @@ on: [push] defaults: run: - shell: bash -l {0} + shell: bash -el -o pipefail {0} + +# fixes rare instances of git commands failing because TERM isnt set +env: + TERM: xterm jobs: build-oci-image: |
