Unverified Commit b014f79e authored by Jakub Sztandera's avatar Jakub Sztandera
Browse files

Fix $CI expanstion



License: MIT
Signed-off-by: default avatarJakub Sztandera <kubuxu@protocol.ai>
parent 692725ff
......@@ -3,21 +3,10 @@ module github.com/filecoin-project/go-sectorbuilder
go 1.12
require (
github.com/golangci/golangci-lint v1.17.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/ipfs/go-log v0.0.1
github.com/neelance/parallel v0.0.0-20160708114440-4de9ce63d14c // indirect
github.com/opentracing/basictracer-go v1.0.0 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/slimsag/godocmd v0.0.0-20161025000126-a1005ad29fe3 // indirect
github.com/sourcegraph/ctxvfs v0.0.0-20180418081416-2b65f1b1ea81 // indirect
github.com/sourcegraph/go-langserver v2.0.0+incompatible // indirect
github.com/sourcegraph/jsonrpc2 v0.0.0-20190106185902-35a74f039c6a // indirect
github.com/stretchr/testify v1.3.0
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20190813142322-97f12d73768f // indirect
)
This diff is collapsed.
......@@ -19,7 +19,7 @@ if download_release_tarball tarball_path "${subm_dir}"; then
cp "${tmp_dir}/bin/paramcache" .
else
if [ $CI = "true" ]; then
if [ "$CI" = "true" ]; then
(>&2 echo "failed to find or obtain precompiled assets for ${subm_dir} - falling back to local build")
build_from_source "${subm_dir}"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment