hack/tree_status.sh: preserve new lines

Quote the status output in echo to preserve the new lines.
Having the output in one line complicated debugging issues
and is not friendly to use.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2019-02-20 13:33:39 +01:00
parent 3b88c73507
commit 28ecb0f3da

View File

@ -8,6 +8,6 @@ then
else
echo "tree is dirty, please commit all changes and sync the vendor.conf"
echo ""
echo $STATUS
echo "$STATUS"
exit 1
fi