diff --git a/local/bin/.gitignore b/local/bin/.gitignore index 28735a7..3a2277c 100644 --- a/local/bin/.gitignore +++ b/local/bin/.gitignore @@ -28,6 +28,7 @@ vis vis-* wjt qutebrowser +alot # shouldn't share this one with the world macaddress diff --git a/local/bin/alot b/local/bin/alot deleted file mode 100755 index cf4f59d..0000000 --- a/local/bin/alot +++ /dev/null @@ -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')() - )