mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
scripts: don't use '-e' command line option for make
There is no reason to override variables from the environment anymore.
This commit is contained in:
parent
e8e3fce851
commit
1e3c971651
4 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
make image -e
|
make image
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
make build -e
|
make build
|
||||||
|
|
|
@ -30,5 +30,5 @@ done
|
||||||
|
|
||||||
|
|
||||||
# Configure environment and run tests
|
# Configure environment and run tests
|
||||||
make e2e-test -e
|
make e2e-test
|
||||||
|
|
||||||
|
|
|
@ -5,5 +5,5 @@ curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/instal
|
||||||
export PATH=$PATH:$(go env GOPATH)/bin
|
export PATH=$PATH:$(go env GOPATH)/bin
|
||||||
|
|
||||||
# Run verify steps
|
# Run verify steps
|
||||||
make gofmt-verify -e
|
make gofmt-verify
|
||||||
make ci-lint -e
|
make ci-lint
|
||||||
|
|
Loading…
Reference in a new issue