copy-includes: make suggested messages understand tags

This commit is contained in:
Jeff Kaufman
2013-04-26 13:04:18 -04:00
parent 1dce70f548
commit e8045a52ad
2 changed files with 7 additions and 4 deletions
+1
View File
@@ -3,3 +3,4 @@
2013-03-18: Updated from mod_pagespeed r2618 (jefftk) 2013-03-18: Updated from mod_pagespeed r2618 (jefftk)
2013-04-03: Updated from mod_pagespeed r2748 (jefftk) 2013-04-03: Updated from mod_pagespeed r2748 (jefftk)
2013-04-18: Updated from mod_pagespeed r2862 (jefftk) 2013-04-18: Updated from mod_pagespeed r2862 (jefftk)
2013-04-26: Updated from mod_pagespeed 1.5.27.2@r2916 (jefftk)
+6 -4
View File
@@ -65,13 +65,15 @@ git add psol/include/
# Log that we did this. # Log that we did this.
SVN_REVISION="$(svn info $MOD_PAGESPEED_SRC | grep Revision | awk '{print $2}')" SVN_REVISION="$(svn info $MOD_PAGESPEED_SRC | grep Revision | awk '{print $2}')"
SVN_TAG="$(svn info $MOD_PAGESPEED_SRC | grep URL | awk -F/ '{print $(NF-1)}')"
DATE="$(date +%F)" DATE="$(date +%F)"
echo "${DATE}: Updated from mod_pagespeed r${SVN_REVISION} ($USER)" >> \ echo "${DATE}: Updated from mod_pagespeed ${SVN_TAG}@r${SVN_REVISION} ($USER)" \
psol/include_history.txt >> psol/include_history.txt
git add psol/include_history.txt git add psol/include_history.txt
echo echo
echo "Verify that the copy looks good and then run:" echo "Verify that the copy looks good and then run:"
echo " git commit -m 'psol: updating from r${SVN_REVISION}'" echo " git commit -m 'psol: updating from ${SVN_TAG}@r${SVN_REVISION}'"
echo echo
echo "You should also commit rebuilt binaries." echo "You should also commit rebuilt binaries if you haven't already."