Adjust release-diff.py

For the 22.01 release I will just create symlinks to the old locations.
This commit is contained in:
mvdbeek
2022-01-19 18:20:19 +00:00
committed by Nicola Soranzo
parent f6915cf9cf
commit 4484f0d2f3
+7 -1
View File
@@ -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 = {}