Update after review comments

Change-Id: Ic566e4857436409cdf1cdd7a635dfeee809b91a9
Signed-off-by: Joakim Roubert <joakimr@axis.com>
This commit is contained in:
Joakim Roubert 2019-12-13 08:07:08 +01:00
parent 499fbb0337
commit 9eef69e3ae
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
# Copyright The containerd Authors. # Copyright The containerd Authors.
@ -18,7 +18,7 @@
# Builds and installs critools including critest and crictl # Builds and installs critools including critest and crictl
# to /usr/local/bin. # to /usr/local/bin.
# #
set -eu set -eu -o pipefail
go get -u github.com/onsi/ginkgo/ginkgo go get -u github.com/onsi/ginkgo/ginkgo
CRITEST_COMMIT=v1.16.1 CRITEST_COMMIT=v1.16.1

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
# Copyright The containerd Authors. # Copyright The containerd Authors.
@ -18,7 +18,7 @@
# #
# Install developer tools to $GOBIN (or $GOPATH/bin if unset) # Install developer tools to $GOBIN (or $GOPATH/bin if unset)
# #
set -eu set -eu -o pipefail
go get -u github.com/stevvooe/protobuild go get -u github.com/stevvooe/protobuild
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint go get -u github.com/golangci/golangci-lint/cmd/golangci-lint

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
# Copyright The containerd Authors. # Copyright The containerd Authors.
@ -18,7 +18,7 @@
# #
# Downloads and installs protobuf # Downloads and installs protobuf
# #
set -eu set -eu -o pipefail
PROTOBUF_VERSION=3.7.0 PROTOBUF_VERSION=3.7.0
GOARCH=$(go env GOARCH) GOARCH=$(go env GOARCH)