From 78611627f6b60b5a2ff7df08b764393b50f5a69a Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Fri, 16 Oct 2020 10:30:06 +0200 Subject: [PATCH] stop tracking alot executable --- local/bin/.gitignore | 1 + local/bin/alot | 12 ------------ 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100755 local/bin/alot 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')() - )