mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Fix missed colorize methods.
This commit is contained in:
@@ -16,21 +16,21 @@ user = User.new(user_args)
|
||||
user.skip_confirmation!
|
||||
|
||||
if user.save
|
||||
puts "Administrator account created:".green
|
||||
puts "Administrator account created:".color(:green)
|
||||
puts
|
||||
puts "login: root".green
|
||||
puts "login: root".color(:green)
|
||||
|
||||
if user_args.key?(:password)
|
||||
puts "password: #{user_args[:password]}".green
|
||||
puts "password: #{user_args[:password]}".color(:green)
|
||||
else
|
||||
puts "password: You'll be prompted to create one on your first visit.".green
|
||||
puts "password: You'll be prompted to create one on your first visit.".color(:green)
|
||||
end
|
||||
puts
|
||||
else
|
||||
puts "Could not create the default administrator account:".red
|
||||
puts "Could not create the default administrator account:".color(:red)
|
||||
puts
|
||||
user.errors.full_messages.map do |message|
|
||||
puts "--> #{message}".red
|
||||
puts "--> #{message}".color(:red)
|
||||
end
|
||||
puts
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace :gitlab do
|
||||
Rake::Task["setup_postgresql"].invoke
|
||||
Rake::Task["db:seed_fu"].invoke
|
||||
rescue Gitlab::TaskAbortedByUserError
|
||||
puts "Quitting...".red
|
||||
puts "Quitting...".color(:red)
|
||||
exit 1
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user