Files
ansible/.ve/bin/wheel
2018-11-12 16:30:14 +08:00

12 lines
233 B
Python
Executable File

#!/home/chchang/ansible/.ve/bin/python2
# -*- coding: utf-8 -*-
import re
import sys
from wheel.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())