Skip to content

Commit 407ef62

Browse files
Address .wasm extension
1 parent 122ca69 commit 407ef62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

IntegrationTests/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
CONFIGURATION ?= debug
22

33
FORCE:
4-
TestSuites/.build/$(CONFIGURATION)/%: FORCE
4+
TestSuites/.build/$(CONFIGURATION)/%.wasm: FORCE
55
swift build --package-path TestSuites \
6-
--product $(notdir $@) \
6+
--product $(basename $(notdir $@)) \
77
--triple wasm32-unknown-wasi \
88
--configuration $(CONFIGURATION)
99

10-
dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%
10+
dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%.wasm
1111
mkdir -p dist
1212
cp $< $@
1313

0 commit comments

Comments
 (0)