[fix] 2nd installation of apps with a hooks directory

This commit is contained in:
zamentur 2015-08-09 15:00:13 +02:00
parent 475b3bb110
commit ca9da64d1a

View file

@ -433,7 +433,7 @@ def app_install(auth, app, label=None, args=None):
if 'hooks' in os.listdir(app_tmp_folder):
for hook in os.listdir(app_tmp_folder +'/hooks'):
#TODO: do it with sed ?
if file[:1] != '.':
if hook[:1] != '.':
with open(app_tmp_folder +'/hooks/'+ hook, "r") as sources:
lines = sources.readlines()
with open(app_tmp_folder +'/hooks/'+ hook, "w") as sources: