debian-mirror-gitlab/db/migrate/20140903115954_migrate_to_new_shell.rb
2019-02-15 15:39:39 +05:30

14 lines
375 B
Ruby

# 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