Skip SSL warnings
This commit is contained in:
parent
9e0643e6de
commit
0b5a63ba86
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@
|
||||||
(str/replace #"[^a-z0-9-_.]" "")
|
(str/replace #"[^a-z0-9-_.]" "")
|
||||||
(#(io/file target-dir %)))))
|
(#(io/file target-dir %)))))
|
||||||
|
|
||||||
(defn scrape-book-urls [github-url]
|
(defn scrape-book-urls [datasource-url]
|
||||||
(->> (http-client/get github-url)
|
(->> (http-client/get datasource-url {:insecure? true})
|
||||||
:body
|
:body
|
||||||
str/split-lines
|
str/split-lines
|
||||||
(map #(second (re-find #"^\* .*\[.+\]\((.+)\)" %)))
|
(map #(second (re-find #"^\* .*\[.+\]\((.+)\)" %)))
|
||||||
|
|
Loading…
Reference in a new issue