Replace "go get" invocations by "go install"
Executing "go get" changes the go.mod & go.sum files which is not the case of "go install". Signed-off-by: Hervé Werner <dud225@hotmail.com>
This commit is contained in:
parent
be9fb6b989
commit
3805e096c0
2 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ fi
|
||||||
|
|
||||||
if [ "${SKIP_IMAGE_CREATION:-false}" = "false" ]; then
|
if [ "${SKIP_IMAGE_CREATION:-false}" = "false" ]; then
|
||||||
if ! command -v ginkgo &> /dev/null; then
|
if ! command -v ginkgo &> /dev/null; then
|
||||||
go get github.com/onsi/ginkgo/v2/ginkgo@v2.6.1
|
go install github.com/onsi/ginkgo/v2/ginkgo@v2.6.1
|
||||||
fi
|
fi
|
||||||
echo "[dev-env] building image"
|
echo "[dev-env] building image"
|
||||||
make -C ${DIR}/../../ clean-image build image
|
make -C ${DIR}/../../ clean-image build image
|
||||||
|
|
|
@ -95,7 +95,7 @@ fi
|
||||||
|
|
||||||
if [ "${SKIP_E2E_IMAGE_CREATION}" = "false" ]; then
|
if [ "${SKIP_E2E_IMAGE_CREATION}" = "false" ]; then
|
||||||
if ! command -v ginkgo &> /dev/null; then
|
if ! command -v ginkgo &> /dev/null; then
|
||||||
go get github.com/onsi/ginkgo/v2/ginkgo@v2.6.1
|
go install github.com/onsi/ginkgo/v2/ginkgo@v2.6.1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "[dev-env] .. done building controller images"
|
echo "[dev-env] .. done building controller images"
|
||||||
|
|
Loading…
Reference in a new issue