mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 19:53:43 +00:00
![Matthew Bauer](/assets/img/avatar_default.png)
There’s some issue in really big files with pipes that doesn’t occur in filename decompression.
6 lines
126 B
Bash
6 lines
126 B
Bash
unpackCmdHooks+=(_tryUnpackDmg)
|
|
_tryUnpackDmg() {
|
|
if ! [[ "$curSrc" =~ \.dmg$ ]]; then return 1; fi
|
|
undmg "$curSrc"
|
|
}
|