Support blank spaces in file names when generating sha256sums.txt

This commit is contained in:
Saivann 2015-06-02 12:37:04 -04:00
parent 27dd3e6999
commit 4cb4e7e586

View file

@ -94,7 +94,7 @@ build:
$S grep -r -L 'Note: this file is built non-deterministically' _site/ \ $S grep -r -L 'Note: this file is built non-deterministically' _site/ \
| egrep -v 'sha256sums.txt' \ | egrep -v 'sha256sums.txt' \
| sort \ | sort \
| xargs sha256sum > _site/sha256sums.txt | xargs -d '\n' sha256sum > _site/sha256sums.txt
## Jekyll annoyingly returns success even when it emits errors and ## Jekyll annoyingly returns success even when it emits errors and
## exceptions, so we'll grep its output for error strings ## exceptions, so we'll grep its output for error strings