Update after review comments
Change-Id: Ic566e4857436409cdf1cdd7a635dfeee809b91a9 Signed-off-by: Joakim Roubert <joakimr@axis.com>
This commit is contained in:
parent
499fbb0337
commit
9eef69e3ae
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright The containerd Authors.
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
# Builds and installs critools including critest and crictl
|
||||
# to /usr/local/bin.
|
||||
#
|
||||
set -eu
|
||||
set -eu -o pipefail
|
||||
|
||||
go get -u github.com/onsi/ginkgo/ginkgo
|
||||
CRITEST_COMMIT=v1.16.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright The containerd Authors.
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#
|
||||
# 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/golangci/golangci-lint/cmd/golangci-lint
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright The containerd Authors.
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#
|
||||
# Downloads and installs protobuf
|
||||
#
|
||||
set -eu
|
||||
set -eu -o pipefail
|
||||
|
||||
PROTOBUF_VERSION=3.7.0
|
||||
GOARCH=$(go env GOARCH)
|
||||
|
Loading…
Reference in New Issue
Block a user