Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ad971a5

Browse files
committed
split variable
1 parent e7f7537 commit ad971a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ REPO = https://github.com/yonaskolb/$(TOOL_NAME)
1010
RELEASE_TAR = $(REPO)/archive/$(VERSION).tar.gz
1111
SHA = $(shell curl -L -s $(RELEASE_TAR) | shasum -a 256 | sed 's/ .*//')
1212
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)
13+
BUILD_PATH = $(shell swift build $(SWIFT_BUILD_FLAGS) --show-bin-path)
14+
EXECUTABLE_PATH = $(BUILD_PATH)/$(EXECUTABLE_NAME)
1415

1516
.PHONY: install build uninstall format_code brew release
1617

0 commit comments

Comments
 (0)