commit 5ec66d177df1f41cc1df3f2694ab8e8cee3e6619 from: Thomas Adam date: Sun Sep 18 08:00:04 2022 UTC portable: maintscripts: fix command use Don't pass '-v' to the command buitin. commit - 6f6c25d65e82e60c44877d2aa05bcbdbc48e65b3 commit + 5ec66d177df1f41cc1df3f2694ab8e8cee3e6619 blob - 7819af6212cd5e10cb08b10fc7af82ebb38a8374 blob + c50d22435a7dd183916b3bba503ae92ce229711d --- maintscripts/sync-upstream.sh +++ maintscripts/sync-upstream.sh @@ -17,7 +17,7 @@ nproc() { NPROCCMD="nproc" - command -v "$NPROCCMD" >/dev/null 2>&1 || { + command "$NPROCCMD" >/dev/null 2>&1 || { NPROCCMD="sysctl -n hw.ncpu" }