undmg: use file name instead of pipe

There’s some issue in really big files with pipes that doesn’t occur
in filename decompression.

+1 -1
+1 -1
pkgs/tools/archivers/undmg/setup-hook.sh
··· 1 1 unpackCmdHooks+=(_tryUnpackDmg) 2 2 _tryUnpackDmg() { 3 3 if ! [[ "$curSrc" =~ \.dmg$ ]]; then return 1; fi 4 - undmg < "$curSrc" 4 + undmg "$curSrc" 5 5 }