From 0b011173775e8ba1750adad761092168d46bbf00 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Wed, 29 Mar 2023 22:18:35 -0400 Subject: [PATCH] Command check fix --- run_spectra.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_spectra.sh b/run_spectra.sh index b1ac116..949732e 100755 --- a/run_spectra.sh +++ b/run_spectra.sh @@ -13,7 +13,7 @@ if [ "$#" -ne 1 ]; then show_usage fi -if ! command -v mvn &> /dev/null; then +if ! command -v mvn > /dev/null; then echo "Maven (mvn) is not found in the path" exit 1 fi