summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Paik <rpaik@gitlab.com>2019-03-07 23:37:16 +0000
committerRay Paik <rpaik@gitlab.com>2019-03-07 23:37:16 +0000
commit976fee745ebf09816c85d2ec81276c8df597568c (patch)
treead5606fc282a7691bcda3439e5d4c767422a7e02
parent90f4b6563d42ff7412de277682c0ecb7c25e41bb (diff)
downloadgitlab-ce-976fee745ebf09816c85d2ec81276c8df597568c.tar.gz
Update cleanup.rake to fix a typo in the error message
-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