angrybeanie_wagtail/env/bin/normalizer

11 lines
299 B
Text
Raw Normal View History

2025-07-25 21:32:16 +10:00
#!/bin/sh
'''exec' "/mnt/storage/Angry Beanie/Web/v2.0/cms/env/bin/python3" "$0" "$@"
' '''
# -*- coding: utf-8 -*-
import re
import sys
from charset_normalizer import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli.cli_detect())