Fixed path in fix_procfile

This commit is contained in:
sleirsgoevy 2017-12-13 20:51:09 +03:00
parent afa6bc403a
commit e1f11c41d8
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ with open(procfile_path) as file:
for line in file:
if ":" in line:
type, cmd = line.split(':', 1)
lines.append(type+': /app/uml/uml_run '+shlex.quote('cd /app; '+cmd.strip())+'\n')
lines.append(type+': /app/.uml/uml_run '+shlex.quote('cd /app; '+cmd.strip())+'\n')
else:
lines.append(line)