aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2015-02-13 12:22:56 +0100
committerPetter Reinholdtsen <pere@hungry.com>2015-02-13 12:22:56 +0100
commit41ec336944542d62550a7a4935a8da8bad53ee5c (patch)
tree03aded75140e7a6352391ada2eac5695ae7fc4bf
parentd70b21c65927331c359f7841c62ffefa0bfb9ef7 (diff)
Accept more HTTPS variants to work with more sites and discover more GA usage.
-rwxr-xr-xruncheck2
1 files changed, 1 insertions, 1 deletions
diff --git a/runcheck b/runcheck
index 2763703..8a5128e 100755
--- a/runcheck
+++ b/runcheck
@@ -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