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-_.]" "")
|
||||
(#(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 #"^\* .*\[.+\]\((.+)\)" %)))
|
||||
|
|
Loading…
Reference in a new issue