Tweaked merge helper script.
- Legacy-Id: 7530
This commit is contained in:
parent
1d246b8b1f
commit
2718eb31fd
|
@ -184,7 +184,9 @@ cp cicmd/commit-${rev}-merge.sh merged@$rev/commit
|
|||
cd -
|
||||
|
||||
echo -e "\nRunning tests"
|
||||
ietf/manage.py test --settings=settings_sqlitetest || die "Tests failed.\nThe commit script is ../cicmd/commit-${rev}-merge.sh"
|
||||
time ietf/manage.py test --settings=settings_sqlitetest || die "Tests failed.\nThe commit script is ../cicmd/commit-${rev}-merge.sh"
|
||||
|
||||
|
||||
|
||||
note "Sending email to changeset author: <$who>"
|
||||
mail -s "Merged datatracker branch personal/$branch@$rev to trunk" $who -c henrik@levkowetz.com <<-EOF
|
||||
|
@ -200,6 +202,10 @@ Regards,
|
|||
(via the mergesprintbranch script)
|
||||
EOF
|
||||
|
||||
echo ""
|
||||
read -p "Continue with the commit? [Y/n] "
|
||||
[ "$REPLY" = "Y" -o "$REPLY" = "y" -o "$REPLY" = "" ] || ARG_COMMIT=0
|
||||
|
||||
if [ "$ARG_COMMIT" != 0 ]; then
|
||||
echo "Committing the merge:"
|
||||
echo ""
|
||||
|
|
Loading…
Reference in a new issue