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:
Diffstat (limited to 'lib/tasks/gitlab/shell.rake')
-rw-r--r--lib/tasks/gitlab/shell.rake17
1 files changed, 1 insertions, 16 deletions
diff --git a/lib/tasks/gitlab/shell.rake b/lib/tasks/gitlab/shell.rake
index 23a518564e1..abeb5bbdf29 100644
--- a/lib/tasks/gitlab/shell.rake
+++ b/lib/tasks/gitlab/shell.rake
@@ -30,7 +30,7 @@ namespace :gitlab do
File.open("config.yml", "w+") { |f| f.puts config.to_yaml }
[
- %w[bin/install] + repository_storage_paths_args,
+ %w[bin/install],
%w[make build]
].each do |cmd|
unless Kernel.system(*cmd)
@@ -46,21 +46,6 @@ namespace :gitlab do
task setup: :gitlab_environment do
setup_gitlab_shell
end
-
- desc "GitLab | Shell | Build missing projects"
- task build_missing_projects: :gitlab_environment do
- Project.find_each(batch_size: 1000) do |project|
- path_to_repo = project.repository.path_to_repo
- if File.exist?(path_to_repo)
- print '-'
- elsif Gitlab::Shell.new.create_repository(project.repository_storage,
- project.disk_path)
- print '.'
- else
- print 'F'
- end
- end
- end
end
def setup_gitlab_shell