storj-sim: use gateway from multipart-upload branch

Change-Id: I0886d277b3b757c8b00975a3e95c2d0d1228488b
This commit is contained in:
Kaloyan Raev 2020-12-04 15:15:47 +02:00
parent a7685f50c9
commit cc9e9ee1f5
3 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ install-sim: ## install storj-sim
## install exact version of storj/gateway
mkdir -p .build/gateway-tmp
-cd .build/gateway-tmp && go mod init gatewaybuild
cd .build/gateway-tmp && GO111MODULE=on go get storj.io/gateway@latest
cd .build/gateway-tmp && GO111MODULE=on go get storj.io/gateway@multipart-upload
##@ Test

View File

@ -117,7 +117,7 @@ install_sim(){
rm -rf .build/gateway-tmp
mkdir -p .build/gateway-tmp
pushd .build/gateway-tmp
go mod init gatewaybuild && GOBIN=${bin_dir} GO111MODULE=on go get storj.io/gateway@latest
go mod init gatewaybuild && GOBIN=${bin_dir} GO111MODULE=on go get storj.io/gateway@multipart-upload
popd
fi
}

View File

@ -96,7 +96,7 @@ install_sim(){
rm -rf .build/gateway-tmp
mkdir -p .build/gateway-tmp
pushd .build/gateway-tmp
go mod init gatewaybuild && GOBIN=${bin_dir} GO111MODULE=on go get storj.io/gateway@latest
go mod init gatewaybuild && GOBIN=${bin_dir} GO111MODULE=on go get storj.io/gateway@multipart-upload
popd
fi
}