diff --git a/psol/include_history.txt b/psol/include_history.txt index b8c3d05c2..666d7cc96 100644 --- a/psol/include_history.txt +++ b/psol/include_history.txt @@ -3,3 +3,4 @@ 2013-03-18: Updated from mod_pagespeed r2618 (jefftk) 2013-04-03: Updated from mod_pagespeed r2748 (jefftk) 2013-04-18: Updated from mod_pagespeed r2862 (jefftk) +2013-04-26: Updated from mod_pagespeed 1.5.27.2@r2916 (jefftk) diff --git a/scripts/copy_includes.sh b/scripts/copy_includes.sh index f5ab3ef7b..9df6f134f 100755 --- a/scripts/copy_includes.sh +++ b/scripts/copy_includes.sh @@ -65,13 +65,15 @@ git add psol/include/ # Log that we did this. 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)" -echo "${DATE}: Updated from mod_pagespeed r${SVN_REVISION} ($USER)" >> \ - psol/include_history.txt +echo "${DATE}: Updated from mod_pagespeed ${SVN_TAG}@r${SVN_REVISION} ($USER)" \ + >> psol/include_history.txt git add psol/include_history.txt echo 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 "You should also commit rebuilt binaries." \ No newline at end of file +echo "You should also commit rebuilt binaries if you haven't already."