Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
fix: remove extremely verbose "x" flag
Browse files Browse the repository at this point in the history
The debug "x" flag that prints every command is really excessive.
  • Loading branch information
Arcitec authored and xynydev committed May 10, 2023
1 parent d09dd76 commit 20e0a06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion scripts/example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 20e0a06

Please sign in to comment.