summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/update_gitignore.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/update_gitignore.rake')
-rw-r--r--lib/tasks/gitlab/update_gitignore.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/gitlab/update_gitignore.rake b/lib/tasks/gitlab/update_gitignore.rake
index 84aa312002b..4fd48cccb1d 100644
--- a/lib/tasks/gitlab/update_gitignore.rake
+++ b/lib/tasks/gitlab/update_gitignore.rake
@@ -2,14 +2,14 @@ namespace :gitlab do
desc "GitLab | Update gitignore"
task :update_gitignore do
unless clone_gitignores
- puts "Cloning the gitignores failed".red
+ puts "Cloning the gitignores failed".color(:red)
return
end
remove_unneeded_files(gitignore_directory)
remove_unneeded_files(global_directory)
- puts "Done".green
+ puts "Done".color(:green)
end
def clone_gitignores