diff options
author | meat <meat@device.domain> | 2024-10-03 12:48:31 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-03 21:37:02 +0200 |
commit | 9880c1ba603a6080b2493c7c399ae36d656a9834 (patch) | |
tree | 1e77dd4178322d7924578c8f63b64dc7545851d8 /autogen.sh | |
parent | e7fee996f1b634aa5ef0a0a20f0be239c83602b8 (diff) |
Use command -v instead of which
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ # Required binaries check # check_bin_file(){ - which $1 > /dev/null 2>&1 + command -v $1 > /dev/null 2>&1 if [ $? = 0 ]; then return 0 else |