anki/tools/run.py
Damien Elmes 1aae621549 Update dockerfile
- Bazel no longer required
- Python no longer required
- Add back the import check step that got lost at one point
2022-11-27 16:45:50 +10:00

13 lines
268 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"])
import aqt
if not os.environ.get("SKIP_RUN"):
aqt.run()