From 20e0a06588e9b0e4edb3522f4d9602d2e681f4af Mon Sep 17 00:00:00 2001 From: Arcitec <38923130+Arcitec@users.noreply.github.com> Date: Tue, 9 May 2023 16:29:59 +0200 Subject: [PATCH] fix: remove extremely verbose "x" flag The debug "x" flag that prints every command is really excessive. --- build.sh | 2 +- scripts/example.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 54f177b..df5fda3 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Tell build process to exit if there are any errors. -set -ouex pipefail +set -oue pipefail # Add custom repos. repos=$(yq '.extrarepos[]' < /usr/etc/ublue-recipe.yml) diff --git a/scripts/example.sh b/scripts/example.sh index d8a0157..fdb2e04 100644 --- a/scripts/example.sh +++ b/scripts/example.sh @@ -3,7 +3,7 @@ # Tell this script to exit if there are any errors. # You should have this in every custom script, to ensure that your completed # builds actually ran successfully without any errors! -set -ouex pipefail +set -oue pipefail # Your code goes here. echo 'This is an example shell script'