Skip to content

Commit 45db08e

Browse files
authored
Merge pull request #136 from starwels/fix-escape-double-quotes-on-bootstrap-install-script
Fix escape double quotes on bootstrap install script
2 parents 70049cf + eba045a commit 45db08e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/install/bootstrap/install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
add_package_json_script("build:css:compile", "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules")
2323
add_package_json_script("build:css:prefix", "postcss ./app/assets/builds/application.css --use=autoprefixer --output=./app/assets/builds/application.css")
2424
add_package_json_script("build:css", "#{bundler_run_cmd} build:css:compile && #{bundler_run_cmd} build:css:prefix")
25-
add_package_json_script("watch:css", "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"#{bundler_run_cmd} build:css\"", false)
25+
add_package_json_script("watch:css", "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \\\"#{bundler_run_cmd} build:css\\\"", false)
2626

2727
gsub_file "Procfile.dev", "build:css --watch", "watch:css"
2828

0 commit comments

Comments
 (0)