Skip to content

Commit 3cab4c2

Browse files
authored
Merge pull request #134 from terracatta/fix_css_generation
Fix missing extensions on Procfile generation
2 parents 87a7dca + 91f26f0 commit 3cab4c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/install/install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
append_to_file "Procfile.dev", "css: #{bundler_run_cmd} build:css --watch\n"
4848
else
4949
say "Add default Procfile.dev"
50-
copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun" : "Procfile_for_node"}", "Procfile.dev"
50+
copy_file "#{__dir__}/#{using_bun? ? "Procfile_for_bun.dev" : "Procfile_for_node.dev"}", "Procfile.dev"
5151

5252
say "Ensure foreman is installed"
5353
run "gem install foreman"

0 commit comments

Comments
 (0)