DEV: Update script/promote_migrations (#13513)

Introduces the --plugins-base flag for updating plugins in a different directory. Followup to 49f39434c4
This commit is contained in:
David Taylor 2021-06-24 13:57:23 +01:00 committed by GitHub
parent cf1e8b2764
commit 20070f5089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 3 deletions

View File

@ -14,8 +14,19 @@ require 'open3'
require 'fileutils'
VERSION_REGEX = %r{\/(\d+)_}
DRY_RUN = ARGV.include? '--dry-run'
PLUGINS = ARGV.include? '--plugins'
DRY_RUN = !!ARGV.delete('--dry-run')
if i = ARGV.find_index('--plugins-base')
ARGV.delete_at(i)
PLUGINS = true
PLUGINS_BASE = ARGV.delete_at(i)
elsif ARV.delete('--plugins')
PLUGINS = true
PLUGINS_BASE = 'plugins'
end
raise "Unknown arguments: #{ARGV.join(', ')}" if ARGV.length > 0
def run(*args, capture: true)
out, s = Open3.capture2(*args)
@ -60,7 +71,7 @@ promote_threshold = latest_stable_post_migration[VERSION_REGEX, 1].to_i
current_post_migrations =
if PLUGINS
puts 'Looking in plugins...'
Dir.glob('plugins/*/db/post_migrate/*')
Dir.glob("#{PLUGINS_BASE}/**/db/post_migrate/*")
else
Dir.glob('db/post_migrate/*')
end