mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Don't inline run webpacker:install on rails new
This commit is contained in:
parent
801741f9a9
commit
34adebd4a7
1 changed files with 2 additions and 2 deletions
|
@ -416,9 +416,9 @@ module Rails
|
|||
|
||||
def run_webpack
|
||||
if webpack_install?
|
||||
rails_command "webpacker:install", inline: true
|
||||
rails_command "webpacker:install"
|
||||
if options[:webpack] && options[:webpack] != "webpack"
|
||||
rails_command "webpacker:install:#{options[:webpack]}", inline: true
|
||||
rails_command "webpacker:install:#{options[:webpack]}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue