diff options
Diffstat (limited to 'venv/bin/watchfiles')
-rwxr-xr-x | venv/bin/watchfiles | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/venv/bin/watchfiles b/venv/bin/watchfiles new file mode 100755 index 0000000..04f00dc --- /dev/null +++ b/venv/bin/watchfiles @@ -0,0 +1,8 @@ +#!/home/sy/code/site/symposium/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from watchfiles.cli import cli +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(cli()) |