Don't change mode for 'app/log' folder in mkvirtualenv().

Callers may lock it down after the fact if they like.
This commit is contained in:
Lance Edgar 2015-04-27 22:39:34 -05:00
parent f6ed45b62a
commit eeb4fce5ca

View file

@ -73,7 +73,7 @@ def mkvirtualenv(name, user='rattail'):
"""
sudo('mkvirtualenv {0}'.format(name))
with cdvirtualenv(name):
mkdir('app/log', owner='{0}:{0}'.format(user), mode='0750')
mkdir('app/log', owner='{0}:{0}'.format(user))
@contextmanager