Skip to content

Commit

Permalink
feat: add nullblob opt everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
tcodes0 committed Sep 6, 2024
1 parent b694ee0 commit 8fda1a8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# at https://opensource.org/license/BSD-3-clause.

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob

##########################
### vars and functions ###
Expand Down
2 changes: 1 addition & 1 deletion go/generate_mocks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### options, imports, mocks ###

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion go/lint_fix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# at https://opensource.org/license/BSD-3-clause.

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion migration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# at https://opensource.org/license/BSD-3-clause.

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# template for bash scripts

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion workflows/main/commit_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# check that commit messages and PR title are conventional commits

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion workflows/main/diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# calls git diff and exists if there are changes

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##############
Expand Down
2 changes: 1 addition & 1 deletion workflows/release/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Args: 1=url 2=title 3=prefix

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down
2 changes: 1 addition & 1 deletion workflows/release/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# parses changelog and pushes tags the newest release

set -euo pipefail
shopt -s globstar
shopt -s globstar nullglob
trap 'err $LINENO' ERR

##########################
Expand Down

0 comments on commit 8fda1a8

Please sign in to comment.