stop tracking alot executable

This commit is contained in:
Felix Van der Jeugt 2020-10-16 10:30:06 +02:00
parent 56c2f3f0ad
commit 78611627f6
No known key found for this signature in database
GPG Key ID: 58B209295023754D
2 changed files with 1 additions and 12 deletions

View File

@ -28,6 +28,7 @@ vis
vis-*
wjt
qutebrowser
alot
# shouldn't share this one with the world
macaddress

View File

@ -1,12 +0,0 @@
#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.9.1','console_scripts','alot'
__requires__ = 'alot==0.9.1'
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('alot==0.9.1', 'console_scripts', 'alot')()
)