| Index: tools/push-to-trunk.sh
|
| ===================================================================
|
| --- tools/push-to-trunk.sh (revision 11348)
|
| +++ tools/push-to-trunk.sh (working copy)
|
| @@ -130,6 +130,7 @@
|
| | grep "^BUG=" | grep -v "BUG=$" | grep -v "BUG=none$" \
|
| | sed -e 's/^/ /' \
|
| | sed -e 's/BUG=v8:\(.*\)$/(issue \1)/' \
|
| + | sed -e 's/BUG=chromium:\(.*\)$/(Chromium issue \1)/' \
|
| | sed -e 's/BUG=\(.*\)$/(Chromium issue \1)/' \
|
| >> "$CHANGELOG_ENTRY_FILE"
|
| # Append the commit's author for reference.
|
| @@ -320,6 +321,14 @@
|
| || die "'git svn tag' failed."
|
| fi
|
|
|
| +if [ -z "$CHROME_PATH" ] ; then
|
| + echo ">>> (asking for Chromium checkout)"
|
| + echo -n "Do you have a \"NewGit\" Chromium checkout and want this script \
|
| +to automate creation of the roll CL? If yes, enter the path to (and including) \
|
| +the \"src\" directory here, otherwise just press <Return>: "
|
| + read CHROME_PATH
|
| +fi
|
| +
|
| if [ -n "$CHROME_PATH" ] ; then
|
|
|
| let CURRENT_STEP+=1
|
|
|