Commit 75ed8c05 authored by Michael Droettboom's avatar Michael Droettboom Committed by GitHub

Merge pull request #290 from ashutoshbsathe/master

Explicitly use python3 for pyodide_build
parents 8dbee7fd 2440491e
#!/bin/bash
# get the absolute path to the root directory
ROOTDIR=$(python -c 'import pathlib, sys; \
ROOTDIR=$(python3 -c 'import pathlib, sys; \
print(pathlib.Path(sys.argv[1]).resolve().parents[1])' \
"${BASH_SOURCE[0]}")
export PYTHONPATH="${PYTHONPATH}:${ROOTDIR}"
python -m pyodide_build "$@"
python3 -m pyodide_build "$@"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment