aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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