Skip to content

Commit

Permalink
Update after review comments
Browse files Browse the repository at this point in the history
Change-Id: Ic566e4857436409cdf1cdd7a635dfeee809b91a9
Signed-off-by: Joakim Roubert <joakimr@axis.com>
  • Loading branch information
joakimr-axis committed Dec 13, 2019
1 parent 499fbb0 commit 9eef69e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions script/setup/install-critools
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash

# Copyright The containerd Authors.

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions script/setup/install-dev-tools
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash

# Copyright The containerd Authors.

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions script/setup/install-protobuf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash

# Copyright The containerd Authors.

Expand All @@ -18,7 +18,7 @@
#
# Downloads and installs protobuf
#
set -eu
set -eu -o pipefail

PROTOBUF_VERSION=3.7.0
GOARCH=$(go env GOARCH)
Expand Down

0 comments on commit 9eef69e

Please sign in to comment.