File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 14
14
- [ #1985 ] ( https://github.com/wasmerio/wasmer/pull/1985 ) Bump minimum supported Rust version to 1.48
15
15
16
16
### Fixed
17
+ - [ #2007 ] ( https://github.com/wasmerio/wasmer/pull/2007 ) Fix packaging of wapm on Windows
17
18
- [ #2005 ] ( https://github.com/wasmerio/wasmer/pull/2005 ) Emscripten is now working again.
18
19
19
20
## 1.0.0 - 2021-01-05
Original file line number Diff line number Diff line change @@ -286,12 +286,16 @@ test-integration:
286
286
# ############
287
287
288
288
package-wapm :
289
- ifneq ($(OS ) , Windows_NT)
290
289
mkdir -p " package/bin"
290
+ ifneq ($(OS ) , Windows_NT)
291
+ if [ -d "wapm-cli" ]; then \
292
+ cp wapm-cli/target/release/wapm package/bin/ ;\
293
+ echo "# !/bin/bash\nwapm execute \"\$$@\"" > package/bin/wax ;\
294
+ chmod +x package/bin/wax ;\
295
+ fi
296
+ else
291
297
if [ -d "wapm-cli" ]; then \
292
- cp wapm-cli/target/release/wapm package/bin/; \
293
- echo "# !/bin/bash\nwapm execute \"\$$@\"" > package/bin/wax; \
294
- chmod +x package/bin/wax; \
298
+ cp wapm-cli/target/release/wapm package/bin/ ;\
295
299
fi
296
300
endif
297
301
You can’t perform that action at this time.
0 commit comments