From 28ecb0f3da7268709f8b0ad7fe7c753602a0a3e6 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Wed, 20 Feb 2019 13:33:39 +0100 Subject: 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 --- hack/tree_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hack') 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 -- cgit v1.2.3-54-g00ecf