depot/third_party/nixpkgs/pkgs/tools/archivers/unrar/setup-hook.sh

6 lines
131 B
Bash
Raw Normal View History

unpackCmdHooks+=(_tryUnrar)
_tryUnrar() {
if ! [[ "$curSrc" =~ \.rar$ ]]; then return 1; fi
unrar x "$curSrc" >/dev/null
}