mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-03 21:29:27 +00:00
[Problem] aaru does not work with used drive letter
#683
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 @Whovian9369 on GitHub (Feb 18, 2024).
Originally assigned to: @mnadareski on GitHub.
Before You Submit
Version
What version are you using?
Build
What runtime version are you using?
Describe the issue
Aaru 5.3.2 does not like currently used drive letter (For example
"D:\") when starting a dump via MPF.To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expected dump to begin.
Screenshots
[No screenshots available]
Additional context
Aaru 5.3.2 doesn't appear to like drive letters appended with
\, and removing that character may fix this issue. (So"D:"may work, though I didn't test it with quotes.)Currently, that returns a message saying that a required argument is missing, and then prints the help information for the
dumpcommand.Example output:
media dump --force True --store-encrypted True --title-keys False --trim True --speed 16 --retry-passes 5 "D:\" "ISO\MyImage\MyImage.aaruf"Additionally, it seems to not like drive letters without a colon (
:) appended.Example of that happening via Aaru itself:
media dump --force True --speed 16 --retry-passes 5 "D" "MyImage.aaruf"What worked was
media dump --force True --speed 16 --retry-passes 5 D: "MyImage.aaruf"