Skip to content

Commit a54d19f

Browse files
committed
Fix Puma plugin entry point issue
1 parent 7fb4975 commit a54d19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/puma/plugin/tailwindcss.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def start(launcher)
1313
# If we use system(*command) instead, IRB and Debug can't read from $stdin
1414
# correctly bacause some keystrokes will be taken by watch_command.
1515
begin
16-
IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io|
16+
IO.popen(['bin/rails', 'tailwindcss:watch'], 'r+') do |io|
1717
IO.copy_stream(io, $stdout)
1818
end
1919
rescue Interrupt

0 commit comments

Comments
 (0)