Skip to content

Commit 2718eb3

Browse files
committed
Tweaked merge helper script.
- Legacy-Id: 7530
1 parent 1d246b8 commit 2718eb3

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

bin/mergedevbranch

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,9 @@ cp cicmd/commit-${rev}-merge.sh merged@$rev/commit
184184
cd -
185185
186186
echo -e "\nRunning tests"
187-
ietf/manage.py test --settings=settings_sqlitetest || die "Tests failed.\nThe commit script is ../cicmd/commit-${rev}-merge.sh"
187+
time ietf/manage.py test --settings=settings_sqlitetest || die "Tests failed.\nThe commit script is ../cicmd/commit-${rev}-merge.sh"
188+
189+
188190
189191
note "Sending email to changeset author: <$who>"
190192
mail -s "Merged datatracker branch personal/$branch@$rev to trunk" $who -c henrik@levkowetz.com <<-EOF
@@ -200,6 +202,10 @@ Regards,
200202
(via the mergesprintbranch script)
201203
EOF
202204
205+
echo ""
206+
read -p "Continue with the commit? [Y/n] "
207+
[ "$REPLY" = "Y" -o "$REPLY" = "y" -o "$REPLY" = "" ] || ARG_COMMIT=0
208+
203209
if [ "$ARG_COMMIT" != 0 ]; then
204210
echo "Committing the merge:"
205211
echo ""

0 commit comments

Comments
 (0)