summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
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