diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2015-02-13 12:22:56 +0100 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2015-02-13 12:22:56 +0100 |
commit | 41ec336944542d62550a7a4935a8da8bad53ee5c (patch) | |
tree | 03aded75140e7a6352391ada2eac5695ae7fc4bf | |
parent | d70b21c65927331c359f7841c62ffefa0bfb9ef7 (diff) |
Accept more HTTPS variants to work with more sites and discover more GA usage.
-rwxr-xr-x | runcheck | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ cat $file | while read url ; do harfile="har-data/$filename.har" if [ ! -e "$harfile" ] ; then echo "testing $url" - if phantomjs netsniff.js "$url" > "$harfile.new" && + if phantomjs --ssl-protocol any netsniff.js "$url" > "$harfile.new" && [ -s "$harfile.new" ]; then mv "$harfile.new" "$harfile" else |