mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
Commandline arguments mangled #882
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @agowa on GitHub (Dec 22, 2025).
Hi,
manually set command line arguments may be mangled. It appears like when someone adds multiple instances of the same parameter but with different values only the very last is actually passed to the executable.
Steps to reproduce:
--skip=5000-5100 --skip=6000-6100--skip=6000-6100was passed to redumper.@Deterous commented on GitHub (Dec 22, 2025):
To have multiple skip ranges with redumper, you need to have colon separated ranges, i.e.
--skip=5000-5100:6000-6100Two sets of --skip is invalid.
@agowa commented on GitHub (Jan 13, 2026):
@Deterous ehm, and why does it work when I invoke it that way from a CMD without MPF then???
@Deterous commented on GitHub (Jan 13, 2026):
MPF is saving you here. Redumper will run just fine with two sets of --skip, but it won't actually do both skips