From ebe160d425a34e419873d49b1885d58cac482227 Mon Sep 17 00:00:00 2001 From: Arnaud Lachaume Date: Sat, 14 Jul 2012 11:48:24 +1000 Subject: [PATCH] fixed the directory option --- lib/foreman/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/foreman/cli.rb b/lib/foreman/cli.rb index 31544ad..3d92488 100644 --- a/lib/foreman/cli.rb +++ b/lib/foreman/cli.rb @@ -125,7 +125,7 @@ private ###################################################################### def procfile case when options[:procfile] then options[:procfile] - when options[:root] then File.expand_path(File.join(options[:app_root], "Procfile")) + when options[:root] then File.expand_path(File.join(options[:root], "Procfile")) else "Procfile" end end