Skip to content

Commit 4ecb6cc

Browse files
cfergeaupraveenkumar
authored andcommitted
build: Add "" around $(TOOLS_BINDIR)
This is required on Windows, otherwise github actions fail with various isssues ("GOBIN must be an absolute path", "/usr/bin/bash: D:acrccrctoolsbin/golangci-lint: No such file or directory", ...)
1 parent 1b6bf22 commit 4ecb6cc

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,12 @@ fmt:
242242
# Run golangci-lint against code
243243
.PHONY: lint cross-lint
244244
lint: $(TOOLS_BINDIR)/golangci-lint
245-
$(TOOLS_BINDIR)/golangci-lint run
245+
"$(TOOLS_BINDIR)"/golangci-lint run
246246

247247
cross-lint: $(TOOLS_BINDIR)/golangci-lint
248-
GOOS=darwin $(TOOLS_BINDIR)/golangci-lint run
249-
GOOS=linux $(TOOLS_BINDIR)/golangci-lint run
250-
GOARCH=amd64 GOOS=windows $(TOOLS_BINDIR)/golangci-lint run
248+
GOOS=darwin "$(TOOLS_BINDIR)"/golangci-lint run
249+
GOOS=linux "$(TOOLS_BINDIR)"/golangci-lint run
250+
GOARCH=amd64 GOOS=windows "$(TOOLS_BINDIR)"/golangci-lint run
251251

252252
.PHONY: gen_release_info
253253
gen_release_info:
@@ -308,7 +308,7 @@ packaging/vfkit.entitlements:
308308

309309
macos-universal-binary: macos-release-binary $(TOOLS_BINDIR)/makefat
310310
mkdir -p out/macos-universal
311-
cd $(BUILD_DIR) && $(TOOLS_BINDIR)/makefat macos-universal/crc macos-amd64/crc macos-arm64/crc
311+
cd $(BUILD_DIR) && "$(TOOLS_BINDIR)"/makefat macos-universal/crc macos-amd64/crc macos-arm64/crc
312312

313313
packagedir: clean embed-download macos-universal-binary packaging/vfkit.entitlements
314314
echo -n $(CRC_VERSION) > packaging/VERSION
@@ -339,7 +339,7 @@ $(BUILD_DIR)/macos-universal/crc-macos-installer.tar: packagedir
339339
cd $(@D) && sha256sum $(@F)>$(@F).sha256sum
340340

341341
%.spec: %.spec.in $(TOOLS_BINDIR)/gomod2rpmdeps
342-
@$(TOOLS_BINDIR)/gomod2rpmdeps | sed -e '/__BUNDLED_PROVIDES__/r /dev/stdin' \
342+
@"$(TOOLS_BINDIR)"/gomod2rpmdeps | sed -e '/__BUNDLED_PROVIDES__/r /dev/stdin' \
343343
-e '/__BUNDLED_PROVIDES__/d' \
344344
-e 's/__VERSION__/'$(CRC_VERSION)'/g' \
345345
-e 's/__OPENSHIFT_VERSION__/'$(OPENSHIFT_VERSION)'/g' \

tools/tools.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
TOOLS_BINDIR = $(realpath $(TOOLS_DIR)/bin)
22

33
$(TOOLS_BINDIR)/makefat: $(TOOLS_DIR)/go.mod
4-
cd $(TOOLS_DIR) && GOBIN=$(TOOLS_BINDIR) go install github.com/randall77/makefat
4+
cd $(TOOLS_DIR) && GOBIN="$(TOOLS_BINDIR)" go install github.com/randall77/makefat
55

66
$(TOOLS_BINDIR)/golangci-lint: $(TOOLS_DIR)/go.mod
7-
cd $(TOOLS_DIR) && GOBIN=$(TOOLS_BINDIR) go install github.com/golangci/golangci-lint/cmd/golangci-lint
7+
cd $(TOOLS_DIR) && GOBIN="$(TOOLS_BINDIR)" go install github.com/golangci/golangci-lint/cmd/golangci-lint
88

99
$(TOOLS_BINDIR)/gomod2rpmdeps: $(TOOLS_DIR)/go.mod
10-
cd $(TOOLS_DIR) && GOBIN=$(TOOLS_BINDIR) go install github.com/cfergeau/gomod2rpmdeps/cmd/gomod2rpmdeps
10+
cd $(TOOLS_DIR) && GOBIN="$(TOOLS_BINDIR)" go install github.com/cfergeau/gomod2rpmdeps/cmd/gomod2rpmdeps

0 commit comments

Comments
 (0)