From 4cb4e7e586236e28b0533a57a31494424e8f3c8c Mon Sep 17 00:00:00 2001 From: Saivann Date: Tue, 2 Jun 2015 12:37:04 -0400 Subject: [PATCH] Support blank spaces in file names when generating sha256sums.txt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 688a88d7..7775a841 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ build: $S grep -r -L 'Note: this file is built non-deterministically' _site/ \ | egrep -v 'sha256sums.txt' \ | sort \ - | xargs sha256sum > _site/sha256sums.txt + | xargs -d '\n' sha256sum > _site/sha256sums.txt ## Jekyll annoyingly returns success even when it emits errors and ## exceptions, so we'll grep its output for error strings