Merge pull request #226 from alachaum/master

CLI: fix directory option
This commit is contained in:
David Dollar
2012-09-14 01:41:36 -07:00
+1 -1
View File
@@ -130,7 +130,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