You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hdiutil detach does two things: 1. it will unmount the volume from /Volumes and 2. it will detach the disk image. Currently, appdmg will retry calling hdiutil detach when it fails. However, if it fails due to 2, then /Volumes/NAME as specified in temporaryImagePath will be gone. Then subsequent retries will fail as well. We are observing this happening on a slow filesystem where the writes are being flushed but the volume was able to be unmounted.
Suggestion: Use diskutil info /Volumes/NAME to get the Device Node and use the node name for hdiutil detach.
The text was updated successfully, but these errors were encountered:
hdiutil detach
does two things: 1. it will unmount the volume from/Volumes
and 2. it will detach the disk image. Currently,appdmg
will retry callinghdiutil detach
when it fails. However, if it fails due to 2, then/Volumes/NAME
as specified intemporaryImagePath
will be gone. Then subsequent retries will fail as well. We are observing this happening on a slow filesystem where the writes are being flushed but the volume was able to be unmounted.Suggestion: Use
diskutil info /Volumes/NAME
to get theDevice Node
and use the node name forhdiutil detach
.The text was updated successfully, but these errors were encountered: