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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-23 17:52:40 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-23 17:52:40 +0300
commitb8f12d1917d2befe17cf8e8f47fb70a1bb6a99ff (patch)
treeeea9e487f1679306149023e2c448fd3488d8d619 /lib/tasks/sidekiq.rake
parent12e09986350344ee05bd87dc70014510dfff68c3 (diff)
Replace GITLAB with GitLab in rake task descriptions
Diffstat (limited to 'lib/tasks/sidekiq.rake')
-rw-r--r--lib/tasks/sidekiq.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tasks/sidekiq.rake b/lib/tasks/sidekiq.rake
index e4bd6545755..d1f6ed87704 100644
--- a/lib/tasks/sidekiq.rake
+++ b/lib/tasks/sidekiq.rake
@@ -1,10 +1,10 @@
namespace :sidekiq do
- desc "GITLAB | Stop sidekiq"
+ desc "GitLab | Stop sidekiq"
task :stop do
system *%W(bin/background_jobs stop)
end
- desc "GITLAB | Start sidekiq"
+ desc "GitLab | Start sidekiq"
task :start do
system *%W(bin/background_jobs start)
end
@@ -14,7 +14,7 @@ namespace :sidekiq do
system *%W(bin/background_jobs restart)
end
- desc "GITLAB | Start sidekiq with launchd on Mac OS X"
+ desc "GitLab | Start sidekiq with launchd on Mac OS X"
task :launchd do
system *%W(bin/background_jobs start_no_deamonize)
end