From bc89b287c91a9c8c3fd265c442bd3b5d5943cac2 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Tue, 30 Jan 2018 10:33:08 -0800 Subject: [PATCH] [master] use 'command' instead of 'type' to find atf-run and kyua paths --- unit/unittest.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 unit/unittest.sh.in diff --git a/unit/unittest.sh.in b/unit/unittest.sh.in old mode 100644 new mode 100755 index de304c641d..2ddbdb7703 --- a/unit/unittest.sh.in +++ b/unit/unittest.sh.in @@ -2,8 +2,8 @@ PATH="@ATFBIN@:${PATH}" export PATH -ATFRUN=`type atf-run 2>/dev/null | awk '{print $3}'` -KYUA=`type kyua 2>/dev/null | awk '{print $3}'` +ATFRUN=`command -v atf-run 2>/dev/null` +KYUA=`command -v kyua 2>/dev/null` status=0 if [ -n "@UNITTESTS@" -a -x "$ATFRUN" -a -f Atffile ]