mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
Adjust release-diff.py
For the 22.01 release I will just create symlinks to the old locations.
This commit is contained in:
@@ -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 = {}
|
||||
|
||||
Reference in New Issue
Block a user