test-kivy-app/kivy_venv/bin/virtualenv
2024-09-15 15:12:16 +03:00

9 lines
275 B
Python
Executable File

#!/home/meko/Builds/test-kivy-app/kivy_venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from virtualenv.__main__ import run_with_catch
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(run_with_catch())