mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-13 03:14:38 +00:00
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
This commit is contained in:
parent
907e440f3a
commit
e833011ccd
14 changed files with 96 additions and 64 deletions
|
@ -21,17 +21,16 @@ def main():
|
|||
"rom", metavar="ROM", type=Path, help="Path to uncompressed ROM"
|
||||
)
|
||||
parser.add_argument(
|
||||
"-v",
|
||||
"--oot-version",
|
||||
required=True,
|
||||
help="OOT version",
|
||||
"output_dir",
|
||||
type=Path,
|
||||
help="Output directory for segments",
|
||||
)
|
||||
parser.add_argument(
|
||||
"-o",
|
||||
"--output-dir",
|
||||
type=Path,
|
||||
"-v",
|
||||
"--version",
|
||||
dest="oot_version",
|
||||
required=True,
|
||||
help="Output directory for segments",
|
||||
help="OOT version",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--dmadata-start",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue