summaryrefslogtreecommitdiffstats
path: root/.local/bin/pyside6-qmlcachegen
blob: 8e796d457d595f4624e57981d8d6285aca845a04 (plain) (blame)
1
2
3
4
5
6
7
8
#!/usr/local/bin/python3.8
# -*- coding: utf-8 -*-
import re
import sys
from PySide6.scripts.pyside_tool import qmlcachegen
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(qmlcachegen())