Skip to content

Commit

Permalink
Fix bug in build target
Browse files Browse the repository at this point in the history
... do not attempt to start a non-existing tool.
  • Loading branch information
helje5 committed Jul 2, 2019
1 parent a904b27 commit 95fc3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -31,7 +31,7 @@ $(DOCKER_BUILD_PRODUCT): $(SWIFT_SOURCES)
-v "$(PWD):/src" \
-v "$(PWD)/$(DOCKER_BUILD_DIR):/src/.build" \
"$(SWIFT_BUILD_IMAGE)" \
bash -c 'cd /src && swift build -c $(CONFIGURATION) && .build/x86_64-unknown-linux/$(CONFIGURATION)/$(TOOL_NAME)'
bash -c 'cd /src && swift build -c $(CONFIGURATION)'
ls -lah $(DOCKER_BUILD_PRODUCT)

docker-all: $(DOCKER_BUILD_PRODUCT)
Expand Down

0 comments on commit 95fc3e9

Please sign in to comment.