Sign in
◑
Theme
android-kvm
/
buildroot
/
refs/heads/next
/
.
/
support
/
dependencies
/
check-host-zstd.sh
blob: 2f469c46cbc2187e99a9db2509d8716e01c6c4fe [
file
] [
edit
]
#!/bin/sh
candidate
=
"$1"
zstdcat
=
$
(
which
"$candidate"
2
>/
dev
/
null
)
if
[
!
-
x
"$zstdcat"
];
then
zstdcat
=
$
(
which zstdcat
2
>/
dev
/
null
)
if
[
!
-
x
"$zstdcat"
];
then
# echo nothing: no suitable zstdcat found
exit
1
fi
fi
echo
"$zstdcat"