Skip to content

Commit

Permalink
Merge pull request #2018 from wasmerio/fix/ci-error-in-makefile
Browse files Browse the repository at this point in the history
Attempt to fix CI error in makefile
  • Loading branch information
MarkMcCaskey committed Jan 13, 2021
2 parents fd84bbe + 2ac927b commit 98cf81c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ build-wasmer-headless-minimal:
ifeq ($(UNAME_S), Darwin)
strip -u target/$(HOST_TARGET)/release/wasmer-headless
else
ifeq ($(OS), Windows_NT)
strip --strip-unneeded target/$(HOST_TARGET)/release/wasmer-headless.exe
else
strip --strip-unneeded target/$(HOST_TARGET)/release/wasmer-headless
endif
ifeq ($(OS), Windows_NT)
strip --strip-unneeded target/$(HOST_TARGET)/release/wasmer-headless.exe
else
strip --strip-unneeded target/$(HOST_TARGET)/release/wasmer-headless
endif
endif

WAPM_VERSION = master # v0.5.0
Expand Down

0 comments on commit 98cf81c

Please sign in to comment.