set -eu in all bash scripts

This commit is contained in:
Carol (Nichols || Goulding) 2022-01-01 20:44:55 -05:00 committed by Carol (Nichols || Goulding)
parent 4f7799e3b3
commit 09e687ec7a
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -eu
aspell --version
# Checks project Markdown files for spelling mistakes.

4
ci/validate.sh Normal file → Executable file
View File

@ -1,3 +1,7 @@
#!/bin/bash
set -eu
for file in src/*.md ; do
echo Checking references in $file
cargo run --quiet --bin link2print < $file > /dev/null