summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2019-02-20 13:33:39 +0100
committerValentin Rothberg <rothberg@redhat.com>2019-02-20 13:35:52 +0100
commit28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6 (patch)
treeb1969df8eca9b579af74682c6e8ec33611a1042f /hack
parent3b88c7350726f5a019f989a1ab7e5046917f2f79 (diff)
downloadpodman-28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6.tar.gz
podman-28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6.tar.bz2
podman-28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6.zip
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>
Diffstat (limited to 'hack')
-rwxr-xr-xhack/tree_status.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/tree_status.sh b/hack/tree_status.sh
index 12c1d1ee5..78fb4c6a3 100755
--- a/hack/tree_status.sh
+++ b/hack/tree_status.sh
@@ -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