From 06149e05433b568d45e4a5b2c4dc4373f154e077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Tue, 3 Sep 2013 23:21:29 -0300 Subject: [PATCH] Fix permission and set umask before generating sdist tarball --- Makefile.buildbot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.buildbot b/Makefile.buildbot index 7039bda1a..5af1f6b20 100644 --- a/Makefile.buildbot +++ b/Makefile.buildbot @@ -17,4 +17,7 @@ clean: git checkout debian scrapy/VERSION git clean -dfq +pypi: + umask 0022 && chmod -R a+rX . && python setup.py sdist upload + .PHONY: clean test build