Preserve newlines in output

This commit is contained in:
Ben Edgington
2022-08-19 15:10:23 +01:00
parent 620a8ff037
commit 6a150f9692

View File

@@ -11,7 +11,7 @@ wordlist=$here/../../src/spellings.txt
output=$($check $source $wordlist)
[[ "$output" == "" ]] || {
echo "Existing spelling errors need to be fixed:"
echo $output
echo "$output"
exit 1
}