Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f7537 commit ad971a5Copy full SHA for ad971a5
Makefile
@@ -10,7 +10,8 @@ REPO = https://github.com/yonaskolb/$(TOOL_NAME)
10
RELEASE_TAR = $(REPO)/archive/$(VERSION).tar.gz
11
SHA = $(shell curl -L -s $(RELEASE_TAR) | shasum -a 256 | sed 's/ .*//')
12
SWIFT_BUILD_FLAGS = --disable-sandbox -c release --arch arm64 --arch x86_64
13
-EXECUTABLE_PATH = $(shell swift build $(SWIFT_BUILD_FLAGS) --show-bin-path)/$(EXECUTABLE_NAME)
+BUILD_PATH = $(shell swift build $(SWIFT_BUILD_FLAGS) --show-bin-path)
14
+EXECUTABLE_PATH = $(BUILD_PATH)/$(EXECUTABLE_NAME)
15
16
.PHONY: install build uninstall format_code brew release
17
0 commit comments