Commit: 462cabe5f5fab43130677d918af80ea9be983d1a
Parent: c81573587d2a0d3128eb6aeaae7dddea413cc383
Author: Randy Palamar
Date: Wed, 10 Sep 2025 21:40:34 -0600
bin/unpack: route correct stream to /dev/null
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/unpack b/bin/unpack
@@ -13,7 +13,7 @@ run()
command -v "$1" >/dev/null 2>&1 ||
die "unpack: missing program: $1"
- "$@" >/dev/null || die "unpack: failed to extract"
+ "$@" 2>/dev/null || die "unpack: failed to extract"
}
case "$#" in