From a44ecd18388898c6da87703e94d42157e51be260 Mon Sep 17 00:00:00 2001 From: Kazuhiko Shiozaki <kazuhiko@nexedi.com> Date: Tue, 5 Feb 2013 22:45:32 +0100 Subject: [PATCH] wrapper script should NOT be world writable. --- component/firefox/buildout.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component/firefox/buildout.cfg b/component/firefox/buildout.cfg index 77a8d399..7158c7ca 100644 --- a/component/firefox/buildout.cfg +++ b/component/firefox/buildout.cfg @@ -38,5 +38,5 @@ script = export PATH=${fontconfig:location}/bin:$PATH exec %(location)s/firefox $*""") wrapper.close() - os.chmod(wrapper_location, 0777) + os.chmod(wrapper_location, 0755) -- 2.30.9