TheRepoClub-DotFiles/.local/bin/dotenv
TheCynicalLiger b74ec1cf8f
first commit
2021-01-09 17:30:42 +00:00

9 lines
206 B
Python
Executable File

#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from dotenv.cli import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())