This commit is contained in:
2026-06-27 04:00:55 +03:00
parent c6d3c60a83
commit 6f1b231ae2
2 changed files with 8 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from deb_python_package.main import start
if __name__ == "__main__":
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
sys.exit(start())