Skip to content

Commit

Permalink
[wasm] provisioning: run sanitize.py with python3 (dotnet#67245)
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek authored Mar 29, 2022
1 parent e95ba4b commit 6f2d769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/wasm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ EMCC=source $(EMSDK_PATH)/emsdk_env.sh 2>/dev/null && emcc
cd $(EMSDK_LOCAL_PATH) && git checkout $(EMSCRIPTEN_VERSION)
cd $(EMSDK_LOCAL_PATH) && ./emsdk install $(EMSCRIPTEN_VERSION)
cd $(EMSDK_LOCAL_PATH) && ./emsdk activate $(EMSCRIPTEN_VERSION)
python ./sanitize.py $(EMSDK_PATH)
python3 ./sanitize.py $(EMSDK_PATH)
touch $@

provision-wasm: .stamp-wasm-install-and-select-$(EMSCRIPTEN_VERSION)
Expand Down
1 change: 1 addition & 0 deletions src/mono/wasm/sanitize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import json
import os
import shutil
Expand Down

0 comments on commit 6f2d769

Please sign in to comment.