diff options
author | Florian Larysch | 2015-09-10 14:28:56 +0200 |
---|---|---|
committer | Florian Larysch | 2015-09-10 14:28:56 +0200 |
commit | 1ca6777baf6d4279fc9baa4d3e815243f38d6b34 (patch) | |
tree | 1bbd211256f2c055d027315beb3885431c15979d | |
parent | c46cc80be58b318b886eb1f0ba7a30194f1447c6 (diff) |
ignore broken certificates when downloading the schedule
-rwxr-xr-x | configs/download.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/download.sh b/configs/download.sh index 658b49d..1e13132 100755 --- a/configs/download.sh +++ b/configs/download.sh @@ -1,7 +1,7 @@ #!/bin/sh # fahrplan -wget -q "http://events.ccc.de/congress/2014/Fahrplan/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml +wget --no-check-certificate -q "http://events.ccc.de/congress/2014/Fahrplan/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml # vod json wget -q "http://cdn.c3voc.de/releases/relive/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json |