From 91f26f0a781f4334ec7291ffd49b802ac771cef9 Mon Sep 17 00:00:00 2001 From: Jason Meller Date: Wed, 13 Sep 2023 20:24:44 -0400 Subject: [PATCH] Fix missing extensions on Procfile generation --- lib/install/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/install.rb b/lib/install/install.rb index 321bbf7..b241602 100644 --- a/lib/install/install.rb +++ b/lib/install/install.rb @@ -47,7 +47,7 @@ append_to_file "Procfile.dev", "css: #{bundler_run_cmd} build:css --watch\n" else say "Add default Procfile.dev" - copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun" : "Procfile_for_node"}", "Procfile.dev" + copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun.dev" : "Procfile_for_node.dev"}", "Procfile.dev" say "Ensure foreman is installed" run "gem install foreman"