Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20140903115954_migrate_to_new_shell.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d83210951332d9c16ce253831dd5ef596dba6d8 (plain)
1
2
3
4
5
6
7
8
9
10
class MigrateToNewShell < ActiveRecord::Migration
  def change
    gitlab_shell_path = Gitlab.config.gitlab_shell.path
    if system("#{gitlab_shell_path}/bin/create-hooks")
      puts 'Repositories updated with new hooks'
    else
      raise 'Failed to rewrite gitlab-shell hooks in repositories'
    end
  end
end