Skip to content

Commit

Permalink
dsfdsf
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Barry committed Oct 17, 2022
1 parent 2351c97 commit eb70fe4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion build-and-inspect-files.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
source file-patterns.sh
source utils.sh

if [[ -v $DEBUG && "$DEBUG" == true ]]
# Fail on errors (and other things)
set -euo pipefail

if [[ "$DEBUG" == true ]]
then
set -x
fi
Expand Down
5 changes: 4 additions & 1 deletion process-deleted-files.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
source build-and-inspect-files.sh

if [[ -v $DEBUG && "$DEBUG" == true ]]
# Fail on errors (and other things)
set -euo pipefail

if [[ "$DEBUG" == true ]]
then
set -x
fi
Expand Down
5 changes: 4 additions & 1 deletion publish-csvws-to-github-pages.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
echo "--Publishing Output to GitHub Pages"

if [[ -v $DEBUG && "$DEBUG" == true ]]
# Fail on errors (and other things)
set -euo pipefail

if [[ "$DEBUG" == true ]]
then
set -x
fi
Expand Down

0 comments on commit eb70fe4

Please sign in to comment.