mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Fix lint-dependencies for workspaces
This commit is contained in:
		@@ -25,9 +25,9 @@ set -o pipefail
 | 
				
			|||||||
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
 | 
					KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
 | 
				
			||||||
source "${KUBE_ROOT}/hack/lib/init.sh"
 | 
					source "${KUBE_ROOT}/hack/lib/init.sh"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Explicitly opt into go modules
 | 
					# Set the Go environment, otherwise we get "can't compute 'all' using the
 | 
				
			||||||
export GO111MODULE=on
 | 
					# vendor directory".
 | 
				
			||||||
# Explicitly set GOFLAGS to ignore vendor, since GOFLAGS=-mod=vendor breaks dependency resolution while rebuilding vendor
 | 
					export GOWORK=off
 | 
				
			||||||
export GOFLAGS=-mod=mod
 | 
					export GOFLAGS=-mod=mod
 | 
				
			||||||
# Detect problematic GOPROXY settings that prevent lookup of dependencies
 | 
					# Detect problematic GOPROXY settings that prevent lookup of dependencies
 | 
				
			||||||
if [[ "${GOPROXY:-}" == "off" ]]; then
 | 
					if [[ "${GOPROXY:-}" == "off" ]]; then
 | 
				
			||||||
@@ -35,6 +35,7 @@ if [[ "${GOPROXY:-}" == "off" ]]; then
 | 
				
			|||||||
  exit 1
 | 
					  exit 1
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					kube::golang::setup_env
 | 
				
			||||||
kube::golang::verify_go_version
 | 
					kube::golang::verify_go_version
 | 
				
			||||||
kube::util::require-jq
 | 
					kube::util::require-jq
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user