Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorRay Paik <rpaik@gitlab.com>2019-03-08 02:37:16 +0300
committerRay Paik <rpaik@gitlab.com>2019-03-08 02:37:16 +0300
commit976fee745ebf09816c85d2ec81276c8df597568c (patch)
treead5606fc282a7691bcda3439e5d4c767422a7e02 /lib/tasks
parent90f4b6563d42ff7412de277682c0ecb7c25e41bb (diff)
Update cleanup.rake to fix a typo in the error message
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/gitlab/cleanup.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/cleanup.rake b/lib/tasks/gitlab/cleanup.rake
index 451ba651674..760331620ef 100644
--- a/lib/tasks/gitlab/cleanup.rake
+++ b/lib/tasks/gitlab/cleanup.rake
@@ -60,7 +60,7 @@ namespace :gitlab do
.new(server.storage)
.rename(path, new_path)
rescue StandardError => e
- puts "Error occured while moving the repository: #{e.message}".color(:red)
+ puts "Error occurred while moving the repository: #{e.message}".color(:red)
end
end
end