Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Fix pagespeed_libraries_generator.sh to fetch pagespeed_libraries.con…
Browse files Browse the repository at this point in the history
…f from github rather than svn.
  • Loading branch information
jmaessen authored and crowell committed Jul 9, 2015
1 parent af5c568 commit a7bef40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/pagespeed_libraries_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# Author: vid@zippykid.com (Vid Luther)
# jefftk@google.com (Jeff Kaufman)

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

0 comments on commit a7bef40

Please sign in to comment.