From b648ca08102ae9b1c140a96b5bfc02fcc303d585 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Wed, 1 May 2019 10:37:50 -0400 Subject: Cirrus: Add check for make varlink_api_generate Signed-off-by: Chris Evich --- hack/tree_status.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hack') diff --git a/hack/tree_status.sh b/hack/tree_status.sh index 78fb4c6a3..ac874a347 100755 --- a/hack/tree_status.sh +++ b/hack/tree_status.sh @@ -1,12 +1,14 @@ #!/bin/bash set -e +SUGGESTION="${SUGGESTION:-sync the vendor.conf and commit all changes.}" + STATUS=$(git status --porcelain) if [[ -z $STATUS ]] then echo "tree is clean" else - echo "tree is dirty, please commit all changes and sync the vendor.conf" + echo "tree is dirty, please $SUGGESTION" echo "" echo "$STATUS" exit 1 -- cgit v1.2.3-54-g00ecf