summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xTools/scripts/rmport11
1 files changed, 7 insertions, 4 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport
index 734247676e38..61738ab8aa57 100755
--- a/Tools/scripts/rmport
+++ b/Tools/scripts/rmport
@@ -405,10 +405,13 @@ commit()
log "Your commit message is:"
cat svnlog
- answer=`ask "Do you want to edit again your commit message?"`
- if [ "${answer}" = "y" ] ; then
- $EDITOR svnlog
- fi
+ answer=y
+ while [ "${answer}" = "y" ] ; do
+ answer=`ask "Do you want to edit your commit message again?"`
+ if [ "${answer}" = "y" ] ; then
+ $EDITOR svnlog
+ fi
+ done
answer=`ask "Do you want to commit now?"`