summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Baylis <charles.baylis@linaro.org>2015-02-25 16:12:41 +0000
committerCharles Baylis <charles.baylis@linaro.org>2015-02-25 16:34:09 +0000
commit804b383eb991e71232e615c9505b0d0dfbcec274 (patch)
tree781f10a653ed27f371208b36650a29a37fb4dedd
parentfcaeede4478c283f86cd5782b951d788ba4db8e9 (diff)
Fix English usage
Alter prompts to read more naturally.
-rwxr-xr-xbackflip6
1 files changed, 3 insertions, 3 deletions
diff --git a/backflip b/backflip
index c7e90a8..60bee04 100755
--- a/backflip
+++ b/backflip
@@ -55,7 +55,7 @@ forge_entry() {
| awk '$1 ~ /^2.*$/ {print "\t"$0} $1 !~ /^2.*$/ {print $0}' >> $2.bcp
print_info "${bold}Forged ChangeLog entry:${NC}"
cat $2.bcp
- ask "${bold}Editing [N/y] ?" user_edit
+ ask "${bold}Edit ChangeLog entry [N/y] ?" user_edit
if [ "$user_edit" == "y" ]; then
"$EDITOR" $2.bcp
fi
@@ -66,8 +66,8 @@ print_step "Finding SHA1"
# ==============================================================================
SHA1=`git log --format=format:"%H" --grep=trunk@${1} master`
print_info "${NC}SVN rev ${bold}${1}${NC} SHA1: ${bold}${SHA1}${NC}"
-ask "${bold}Watch the commit [N/y] ?" user_watch
-if [ "$user_watch" == "y" ]; then
+ask "${bold}View the commit [N/y] ?" user_view
+if [ "$user_view" == "y" ]; then
git show $SHA1
fi