From b861c8a65eb3a2c8e5f90b60079c312490f8f216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Wed, 3 Apr 2013 20:44:54 +0200 Subject: [PATCH] chmod 755 the command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 39f25786..07f0ab73 100755 --- a/setup.py +++ b/setup.py @@ -433,6 +433,7 @@ class Setup(): os.system('zip -0 ../ponysay.zip ' + ' '.join(ponysaysrc)) # use not compress, prefer speed finally: os.chdir('..') + os.chmod('../ponysay.zip', 0o755) try: fileout = open('ponysay.install', 'wb+') filein = open('src/%s' % src, 'rb')