mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/intellecton.git
synced 2026-06-18 01:22:57 +00:00
8 lines
246 B
Text
8 lines
246 B
Text
|
|
#!/home/antigravity/intellecton/venv/bin/python3
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
import re
|
||
|
|
import sys
|
||
|
|
from cachecontrol._cmd import main
|
||
|
|
if __name__ == '__main__':
|
||
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||
|
|
sys.exit(main())
|