2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2015-04-26 12:48:37 +05:30
|
|
|
class MigrateToNewShell < ActiveRecord::Migration
|
|
|
|
def change
|
2015-12-23 02:04:40 +05:30
|
|
|
return if Rails.env.test?
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
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
|