summaryrefslogtreecommitdiff
path: root/db/migrate/20140903115954_migrate_to_new_shell.rb
blob: cc0cce483b166bd55aea2319b544384967e429dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# rubocop:disable all
class MigrateToNewShell < ActiveRecord::Migration[4.2]
  def change
    return if Rails.env.test?

    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