Fixed path in fix_procfile
This commit is contained in:
parent
afa6bc403a
commit
e1f11c41d8
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue