diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2019-02-20 13:33:39 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2019-02-20 13:35:52 +0100 |
commit | 28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6 (patch) | |
tree | b1969df8eca9b579af74682c6e8ec33611a1042f /hack/tree_status.sh | |
parent | 3b88c7350726f5a019f989a1ab7e5046917f2f79 (diff) | |
download | podman-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/tree_status.sh')
-rwxr-xr-x | hack/tree_status.sh | 2 |
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 |