fix: remove extremely verbose "x" flag
The debug "x" flag that prints every command is really excessive.
This commit is contained in:
2
build.sh
2
build.sh
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Tell build process to exit if there are any errors.
|
# Tell build process to exit if there are any errors.
|
||||||
set -ouex pipefail
|
set -oue pipefail
|
||||||
|
|
||||||
# Add custom repos.
|
# Add custom repos.
|
||||||
repos=$(yq '.extrarepos[]' < /usr/etc/ublue-recipe.yml)
|
repos=$(yq '.extrarepos[]' < /usr/etc/ublue-recipe.yml)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Tell this script to exit if there are any errors.
|
# Tell this script to exit if there are any errors.
|
||||||
# You should have this in every custom script, to ensure that your completed
|
# You should have this in every custom script, to ensure that your completed
|
||||||
# builds actually ran successfully without any errors!
|
# builds actually ran successfully without any errors!
|
||||||
set -ouex pipefail
|
set -oue pipefail
|
||||||
|
|
||||||
# Your code goes here.
|
# Your code goes here.
|
||||||
echo 'This is an example shell script'
|
echo 'This is an example shell script'
|
||||||
|
|||||||
Reference in New Issue
Block a user