425d9e3fe1
Regressed in 711c28e1a5
15 lines
357 B
Python
15 lines
357 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.extend(["pylib", "qt", "out/pylib", "out/qt"])
|
|
if sys.platform == "win32":
|
|
os.environ["PATH"] += ";out\\extracted\\win_amd64_audio"
|
|
|
|
import aqt
|
|
|
|
if not os.environ.get("SKIP_RUN"):
|
|
aqt.run()
|