3 # Script to update the webkit in-tree copy of the woff2 library.
4 # Run this within the /Source/ThirdParty/woff2 directory of the source tree.
6 MY_TEMP_DIR=`mktemp -d -t woff2_update.XXXXXX` || exit 1
8 git clone https://github.com/google/woff2 ${MY_TEMP_DIR}/woff2
10 COMMIT=`(cd ${MY_TEMP_DIR}/woff2 && git log | head -n 1)`
11 perl -p -i -e "s/\[commit [0-9a-f]{40}\]/[${COMMIT}]/" README.webkit;
14 mv ${MY_TEMP_DIR}/woff2/src src
18 echo "### Updated woff2/src to $COMMIT."
19 echo "### Remember to verify and commit the changes to source control!"