diff options
author | Ray Paik <rpaik@gitlab.com> | 2019-03-07 23:37:16 +0000 |
---|---|---|
committer | Ray Paik <rpaik@gitlab.com> | 2019-03-07 23:37:16 +0000 |
commit | 976fee745ebf09816c85d2ec81276c8df597568c (patch) | |
tree | ad5606fc282a7691bcda3439e5d4c767422a7e02 /lib/tasks | |
parent | 90f4b6563d42ff7412de277682c0ecb7c25e41bb (diff) | |
download | gitlab-ce-976fee745ebf09816c85d2ec81276c8df597568c.tar.gz |
Update cleanup.rake to fix a typo in the error message
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/cleanup.rake | 2 |
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 |