Flatten script file hierarchy

Scripts would not be added to path otherwise
This commit is contained in:
Marty Oehme 2020-01-04 12:19:39 +01:00
parent f367bc5819
commit e791340b19
6 changed files with 0 additions and 0 deletions

12
scripts/.local/bin/ueberzug Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'ueberzug==18.1.5','console_scripts','ueberzug'
__requires__ = 'ueberzug==18.1.5'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('ueberzug==18.1.5', 'console_scripts', 'ueberzug')()
)