summaryrefslogtreecommitdiffstats
path: root/hack/tree_status.sh
blob: 11c9d6c786ea15350e3524ff2e4cc52615e8f8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
set -e

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 ""
	echo "$STATUS"
	git diff
	exit 1
fi