From cc64ab08da7cc7f7046996bf9302ed82bdee407d Mon Sep 17 00:00:00 2001 From: emma Date: Fri, 16 Dec 2022 00:41:14 -0500 Subject: [PATCH] actually fixed build.sh --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 614a17f..4049c85 100755 --- a/build.sh +++ b/build.sh @@ -24,7 +24,7 @@ if ! test -n "$1"; then exit 64 # sysexits(3) EX_USAGE fi -if ! command -v cargo 1>&2; then +if ! command -v cargo >/dev/null; then printf "%s: Missing dependency: cargo(1)\n" "$0" 1>&2 exit 69 # syexits(3) EX_UNAVAILABLE fi