From ac966a3d6aba8233e3d509657afe73734e5a833a Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 23 Oct 2024 19:39:32 -0400 Subject: [PATCH] fix minor just setup issue --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 9512c23..2fdc48a 100644 --- a/justfile +++ b/justfile @@ -122,7 +122,7 @@ ci-test-msrv: rust-info check-lib test is-sqlite3-available: #!/usr/bin/env sh set -eu - if ! command -v {{ sqlite3 }} &> /dev/null; then + if ! command -v {{ sqlite3 }} > /dev/null; then echo "{{ sqlite3 }} executable could not be found" exit 1 fi