summaryrefslogtreecommitdiff
path: root/backflip
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-06-07 14:30:44 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2016-06-07 13:10:53 +0000
commit886210530f658e0dc1506c839a15cf353702e278 (patch)
treed09749c21c7df6707a198ab79f37de1ff73a9190 /backflip
parent1f82337a3b99032836041f47cf4dbcaa24d6340a (diff)
backflip: Print which revision number is missing.
Change-Id: I5f6ddc56c1367ea0d29bc8bcf733cb9450123044
Diffstat (limited to 'backflip')
-rwxr-xr-xbackflip2
1 files changed, 1 insertions, 1 deletions
diff --git a/backflip b/backflip
index 1e6d32e..7eb30e6 100755
--- a/backflip
+++ b/backflip
@@ -171,7 +171,7 @@ for REV in "$@"
do
SHA1=`git log --format=format:"%H" --grep=trunk@${REV} master`
if [ -z "$SHA1" ]; then
- die "${red}This revision is missing in master history${NC}"
+ die "${red}Revision ${REV} is missing in master history${NC}"
fi
done