From c361ee9c2866dfba3f6d0b25ccf8af21b6210177 Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Fri, 16 Sep 2022 21:55:49 -0500 Subject: [PATCH] Minor update --- core/unittest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/unittest b/core/unittest index 2419250..72c607c 100755 --- a/core/unittest +++ b/core/unittest @@ -106,7 +106,7 @@ if [ -z "${target+x}" ]; then (>&2 /usr/bin/printf "Usage: unittest TARGET [OPTIONS]\n") exit 1 elif [ ! -d "$target" ]; then - if /usr/bin/printf "%s\n" "$target" | grep -q -e ".*\.py"; then + if /usr/bin/printf "%s\n" "$target" | /usr/bin/grep -q -e ".*\.py"; then single_target=1 else error_msg "No such directory '${target}'" -- 2.45.2