98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
13 lines
370 B
Ruby
13 lines
370 B
Ruby
# rubocop:disable all
|
|
class MigrateToNewShell < ActiveRecord::Migration
|
|
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
|