ticket #69 attempt 1

This commit is contained in:
Typosaurus
2026-07-19 18:28:20 +00:00
parent 818568c609
commit 24acd7e6e7
769 changed files with 274759 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/workspace/repo/.venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())