Skip to content

Commit b000761

Browse files
authored
Convert to strings first
1 parent 3741b94 commit b000761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tasks/build.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require 'shellwords'
2-
TAILWIND_COMPILE_COMMAND = "#{Pathname.new(__dir__).to_s.shellescape}/../../exe/tailwindcss -i #{Rails.root.join("app/assets/stylesheets/application.tailwind.css").shellescape} -o #{Rails.root.join("app/assets/builds/tailwind.css").shellescape} -c #{Rails.root.join("config/tailwind.config.js").shellescape}"
2+
TAILWIND_COMPILE_COMMAND = "#{Pathname.new(__dir__).to_s.shellescape}/../../exe/tailwindcss -i #{Rails.root.join("app/assets/stylesheets/application.tailwind.css").to_s.shellescape} -o #{Rails.root.join("app/assets/builds/tailwind.css").to_s.shellescape} -c #{Rails.root.join("config/tailwind.config.js").to_s.shellescape}"
33

44
namespace :tailwindcss do
55
desc "Build your Tailwind CSS"

0 commit comments

Comments
 (0)