Skip to content

Commit a6ccd0d

Browse files
committed
Bundle in quiet for authentication generator
Just like we now do for the main app generator
1 parent 52189d2 commit a6ccd0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

railties/lib/rails/generators/rails/authentication/authentication_generator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def configure_application
2727
def enable_bcrypt
2828
if File.read("Gemfile").include?('gem "bcrypt"')
2929
uncomment_lines "Gemfile", /gem "bcrypt"/
30-
Bundler.with_original_env { execute_command :bundle, "" }
30+
Bundler.with_original_env { execute_command :bundle, "install --quiet" }
3131
else
32-
Bundler.with_original_env { execute_command :bundle, "add bcrypt" }
32+
Bundler.with_original_env { execute_command :bundle, "add bcrypt --quiet" }
3333
end
3434
end
3535

0 commit comments

Comments
 (0)