summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpenguin <penguin@epenguin.net>2025-12-14 21:36:55 -0600
committerpenguin <penguin@epenguin.net>2025-12-14 21:40:50 -0600
commitf7f17514a66d52a4acdf0ec9454cfa32a9587dbc (patch)
tree5521ba916632c0db8f1b530c485c78327fff1a1b
parenteac300343d0b0a9400b774e8e583df0e23662b4d (diff)
downloadgentoo-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.yml6
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: