diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-09-04 20:49:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 03:49:16 +0900 |
| commit | e833011ccd0a594ec16cdee8c94f21c3b8cc32d0 (patch) | |
| tree | 17a1604d58890bb03a8cbcbb1233f7b744f5742d /diff_settings.py | |
| parent | 907e440f3add31a315475f878ced0c6b9d453708 (diff) | |
Cleanup: Pass all paths to tools rather than tools constructing them (#2017)
* Pass all paths to tools rather than tools constructing them
* fix: make --baserom-segments required
* sync with mm reviews
* --version everywhere
Diffstat (limited to 'diff_settings.py')
| -rw-r--r-- | diff_settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff_settings.py b/diff_settings.py index 66eb4e733..05f16bd27 100644 --- a/diff_settings.py +++ b/diff_settings.py @@ -1,5 +1,5 @@ def add_custom_arguments(parser): - parser.add_argument("-v", "--oot-version", help="OOT version", default="gc-eu-mq-dbg") + parser.add_argument("-v", "--version", dest="oot_version", help="OOT version", default="gc-eu-mq-dbg") def apply(config, args): version = args.oot_version |
