Skip to content

Commit a7bef40

Browse files
jmaessencrowell
authored andcommitted
Fix pagespeed_libraries_generator.sh to fetch pagespeed_libraries.conf from github rather than svn.
1 parent af5c568 commit a7bef40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/pagespeed_libraries_generator.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# Author: [email protected] (Vid Luther)
1414
# [email protected] (Jeff Kaufman)
1515

16-
URL="https://modpagespeed.googlecode.com/svn/trunk/src/"
16+
URL="https://github.com/pagespeed/mod_pagespeed/raw/master/"
1717
URL+="net/instaweb/genfiles/conf/pagespeed_libraries.conf"
18-
curl -s "$URL" \
18+
curl -L -s -S "$URL" \
1919
| grep ModPagespeedLibrary \
2020
| while read library size hash url ; do
2121
echo " pagespeed Library $size $hash $url;"

0 commit comments

Comments
 (0)