Merge pull request #204 from filecoin-project/feat/no-https-yet

use http because i don't have a cert
This commit is contained in:
Whyrusleeping 2019-09-17 15:51:21 -07:00 committed by GitHub
commit f3854a4826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ fetch_gateway() {
local dest="$1" local dest="$1"
local cid="$2" local cid="$2"
local url="https://198.211.99.118/ipfs/$cid" local url="http://198.211.99.118/ipfs/$cid"
download "$url" "$dest" download "$url" "$dest"
} }