File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ function print-help() {
43
43
echo " pr Build node-problem-detector for presubmit jobs and push to staging. Flag -p is required."
44
44
echo " ci Build node-problem-detector for CI jobs and push to staging."
45
45
echo " get-ci-env Download environment variable file from staging for CI job."
46
- echo " install-lib Install the libraries needed ."
46
+ echo " install-lib Install the required libraries and tools for presubmit and CI jobs ."
47
47
echo
48
48
echo " Examples:"
49
49
echo " build.sh help"
@@ -66,6 +66,9 @@ function get-version() {
66
66
function install-lib() {
67
67
apt-get update
68
68
apt-get install -y libsystemd-dev
69
+ # Turn off go modules here, because we are not trying to install
70
+ # ginkgo library/module. We are trying to install the ginkgo executable.
71
+ GO111MODULE=off go get -v github.com/onsi/ginkgo/ginkgo
69
72
}
70
73
71
74
function write-env-file() {
You can’t perform that action at this time.
0 commit comments