Merge pull request #379 from juergenhoetzel/dont-use-non-posix-which
Use POSIX "command" instead of non-standard "which"
This commit is contained in:
commit
296d7fdd2e
|
@ -100,10 +100,10 @@ EOF
|
||||||
trap finish EXIT
|
trap finish EXIT
|
||||||
|
|
||||||
get() {
|
get() {
|
||||||
if which curl > /dev/null 2>&1
|
if command -v curl > /dev/null 2>&1
|
||||||
then
|
then
|
||||||
curl -s -f "$@"
|
curl -s -f "$@"
|
||||||
elif which wget > /dev/null 2>&1
|
elif command -v wget > /dev/null 2>&1
|
||||||
then
|
then
|
||||||
wget -O - "$@"
|
wget -O - "$@"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue