Skip SSL warnings

This commit is contained in:
Aaron Fischer 2015-06-10 23:15:53 +02:00
parent 9e0643e6de
commit 0b5a63ba86

View file

@ -51,8 +51,8 @@
(str/replace #"[^a-z0-9-_.]" "")
(#(io/file target-dir %)))))
(defn scrape-book-urls [github-url]
(->> (http-client/get github-url)
(defn scrape-book-urls [datasource-url]
(->> (http-client/get datasource-url {:insecure? true})
:body
str/split-lines
(map #(second (re-find #"^\* .*\[.+\]\((.+)\)" %)))