Skip to content

Commit 03b7d8b

Browse files
authored
Merge pull request #170 from BaylorRae/patch-1
fix bug: call `bun run build` when appending Procfile.dev
2 parents 531a39b + f5232ab commit 03b7d8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/install/bun/install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require 'json'
22

33
if Rails.root.join("Procfile.dev").exist?
4-
append_to_file "Procfile.dev", "js: bun build --watch\n"
4+
append_to_file "Procfile.dev", "js: bun run build --watch\n"
55
else
66
say "Add default Procfile.dev"
77
copy_file "#{__dir__}/Procfile.dev", "Procfile.dev"

0 commit comments

Comments
 (0)