From 71e336ebcc2d7e7f3985c4fb8191fe6f2b704df2 Mon Sep 17 00:00:00 2001 From: ShyPike Date: Sat, 25 Sep 2010 12:18:45 +0200 Subject: [PATCH] Make tools/make_mo.py executable in the tar.gz distribution. --- package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.py b/package.py index 2f899c9..8d86d57 100755 --- a/package.py +++ b/package.py @@ -151,7 +151,7 @@ def CreateTar(folder, fname, release): tarinfo = tar.gettarinfo(path, fpath) tarinfo.uid = 0 tarinfo.gid = 0 - if _file in ('SABnzbd.py', 'Sample-PostProc.sh'): # One day add: 'setup.py' + if _file in ('SABnzbd.py', 'Sample-PostProc.sh', 'tools/make_mo.py'): # One day add: 'setup.py' tarinfo.mode = 0755 else: tarinfo.mode = 0644