Use python launcher instead of a direct python call.

This commit is contained in:
Viktor Kovacs 2021-05-12 19:55:51 +02:00
parent 51f42f8505
commit 2a0f058ff0

View File

@ -15,8 +15,8 @@
"scripts": { "scripts": {
"test": "mocha test", "test": "mocha test",
"coverage": "nyc mocha test", "coverage": "nyc mocha test",
"build": "python tools/create_package.py", "build": "py -3 tools/create_package.py",
"update": "python tools/update_includes.py", "update": "py -3 tools/update_includes.py",
"svg": "python tools/optimize_svg_files.py" "svg": "py -3 tools/optimize_svg_files.py"
} }
} }