Merge pull request #8778 from miccal/unpack-strategy-dmg

unpack_strategy/dmg: remove deprecated IDME attach flag
This commit is contained in:
Miccal Matthews 2020-09-21 08:05:32 +08:00 committed by GitHub
commit 431b9c0742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,7 +132,7 @@ module UnpackStrategy
without_eula = system_command(
"hdiutil",
args: [
"attach", "-plist", "-nobrowse", "-readonly", "-noidme",
"attach", "-plist", "-nobrowse", "-readonly",
"-mountrandom", mount_dir, path
],
input: "qn\n",
@ -159,7 +159,7 @@ module UnpackStrategy
with_eula = system_command!(
"hdiutil",
args: [
"attach", "-plist", "-nobrowse", "-readonly", "-noidme",
"attach", "-plist", "-nobrowse", "-readonly",
"-mountrandom", mount_dir, cdr_path
],
verbose: verbose,