diff options
author | EuAndreh <eu@euandre.org> | 2020-10-30 16:24:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-30 16:24:36 -0300 |
commit | 644335245fbcf69c067978d9efdf8690ba051873 (patch) | |
tree | cba241a5c6c1f09fa6195388a59beaa9e174d360 /scripts | |
parent | Translate alt of link icon (diff) | |
download | euandre.org-644335245fbcf69c067978d9efdf8690ba051873.tar.gz euandre.org-644335245fbcf69c067978d9efdf8690ba051873.tar.xz |
assert-spelling.sh: Enable --trace by default when doing Jekyll builds
Diffstat (limited to '')
-rwxr-xr-x | scripts/assert-spelling.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/assert-spelling.sh b/scripts/assert-spelling.sh index bf1a350..615fddc 100755 --- a/scripts/assert-spelling.sh +++ b/scripts/assert-spelling.sh @@ -15,7 +15,7 @@ done OUT="$(mktemp)" shopt -s globstar -jekyll build --future +jekyll build --future --trace for f in _site/**/*.html; do if ! grep -E '^_site/vendor/' <(echo "$f") > /dev/null; then l="$(head -n2 "$f" | tail -n1 | cut -d\" -f2)" |