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
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-03-09 15:35:06 +0300
committerNick Thomas <nick@gitlab.com>2019-03-09 15:35:06 +0300
commitfa90b10f228646ee746337ad0edf9e840569dd80 (patch)
treeb226f9d5e9f44faee22e021a030d08f238a43ed0
parent106888fb51bd1e63c0ee2f1ca84653b7f9416f6f (diff)
parent976fee745ebf09816c85d2ec81276c8df597568c (diff)
Merge branch 'fix-error-msg-typo' into 'master'
Update cleanup.rake to fix a typo in the error message See merge request gitlab-org/gitlab-ce!25901
-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