scripts/env: Fix 56f813674a scripts/env: use command -v instead of which
[openwrt/openwrt.git] / scripts / env
index 726a354b57f5c8f7250b25c9ffc221ca1bb9937d..df8b486bfece2a3385400a241e902a20915b717a 100755 (executable)
@@ -57,7 +57,7 @@ env_init() {
        if [ -z "$CREATE" ]; then
                [ -d "$ENVDIR" ] || exit 0
        fi
-       command -v git || error "Git is not installed"
+       command -v git >/dev/null || error "Git is not installed"
        mkdir -p "$ENVDIR" || error "Failed to create the environment directory"
        cd "$ENVDIR" || error "Failed to switch to the environment directory"
        [ -d .git ] || {