summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2015-04-14 12:00:36 +1200
committerAndrew Bartlett <abartlet@samba.org>2015-04-15 05:58:19 +0200
commit1b0bfdf64f40fd743c8257ebe8f2f82478c95dbb (patch)
tree38a0ec439c90d5ce90dda2f2819077d4990034f3 /script
parenteeb90cfea2d5615ec3721387fba560a6663a3aaf (diff)
downloadsamba-1b0bfdf64f40fd743c8257ebe8f2f82478c95dbb.tar.gz
Improve output of check-clean-tree.sh script
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/clean-source-tree.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/clean-source-tree.sh b/script/clean-source-tree.sh
index d0107f6cd75..ea9e6e333ba 100755
--- a/script/clean-source-tree.sh
+++ b/script/clean-source-tree.sh
@@ -5,8 +5,8 @@ N=`git clean -n | wc -l`
C=`git diff --stat HEAD | wc -l`
test x"$N" != x"0" && {
- echo "The tree has uncommitted changes!!! see stderr"
- echo "The tree has uncommitted changes!!!" >&2
+ echo "The tree has $N new uncommitted files!!! see stderr"
+ echo "The tree has $N new uncommitted files!!!" >&2
echo "git clean -n" >&2
git clean -n >&2