From 4484f0d2f30bd0225dc895555a31e14ce2a111c9 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Fri, 14 Jan 2022 14:27:59 +0100 Subject: [PATCH] Adjust release-diff.py For the 22.01 release I will just create symlinks to the old locations. --- scripts/release-diff.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/release-diff.py b/scripts/release-diff.py index f2e84d8ad94..240faa90dc7 100644 --- a/scripts/release-diff.py +++ b/scripts/release-diff.py @@ -142,7 +142,13 @@ def load_at_time(path, revision=None): def main(old_revision, new_revision=None): - files_to_diff = glob.glob("config/*.yml.sample") + glob.glob('lib/galaxy/webapps/galaxy/*schema.yml') + globs = ( + "config/*.yml.sample", + "lib/galaxy/config/schemas/*schema.yml", + "lib/galaxy/webapps/reports/config_schema.yml", + "lib/tool_shed/webapp/config_schema.yml", + ) + files_to_diff = [f for g in globs for f in glob.glob(g)] added = {} removed = {} changed = {}