From 20070f5089e1fe591a3f7bdb341e4d6e3052afaf Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 24 Jun 2021 13:57:23 +0100 Subject: [PATCH] DEV: Update script/promote_migrations (#13513) Introduces the --plugins-base flag for updating plugins in a different directory. Followup to 49f39434c48c6f05ab2037f0f31c9da521401cfb --- script/promote_migrations | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/script/promote_migrations b/script/promote_migrations index a76e751bea4..a57ddde1a88 100755 --- a/script/promote_migrations +++ b/script/promote_migrations @@ -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