1
0
Fork 0
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:
Markus Lehtonen 2020-09-15 11:53:50 +03:00
parent e8e3fce851
commit 1e3c971651
4 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,3 @@
#!/bin/bash -e #!/bin/bash -e
make image -e make image

View file

@ -1,3 +1,3 @@
#!/bin/bash -e #!/bin/bash -e
make build -e make build

View file

@ -30,5 +30,5 @@ done
# Configure environment and run tests # Configure environment and run tests
make e2e-test -e make e2e-test

View file

@ -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