exes - add stapler, I dislike having untracked files

This commit is contained in:
Felix Van der Jeugt 2016-04-26 17:13:24 +02:00
parent 3084402e5c
commit 8fb42b309d
2 changed files with 22 additions and 0 deletions

11
local/bin/pdf-stapler Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python2.7
# -*- coding: utf-8 -*-
import re
import sys
from staplelib import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

11
local/bin/stapler Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python2.7
# -*- coding: utf-8 -*-
import re
import sys
from staplelib import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())