From 45af7058cd0cdae53a3ba2eab3a3c15bc6298ba8 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 7 Sep 2021 14:07:58 +0200 Subject: [PATCH] tests/gnrc_dhcpv6_client: pipe `command` output to /dev/null --- tests/gnrc_dhcpv6_client/dhcpv6_server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gnrc_dhcpv6_client/dhcpv6_server.sh b/tests/gnrc_dhcpv6_client/dhcpv6_server.sh index edfe0dc358..0c20e6d8b2 100755 --- a/tests/gnrc_dhcpv6_client/dhcpv6_server.sh +++ b/tests/gnrc_dhcpv6_client/dhcpv6_server.sh @@ -6,7 +6,7 @@ # Distributed under terms of the MIT license. # -if ! command -v kea-dhcp6; then +if ! command -v kea-dhcp6 > /dev/null; then echo -e "\033[31;1mCommand kea-dhcp6 required\033[0m" >&2 exit 1 fi