From ec9617eafe18d52bae58108ac8f835dc97ef8ddb Mon Sep 17 00:00:00 2001 From: Apostolis Anastasiou Date: Sat, 21 Jan 2023 19:02:55 +0200 Subject: [PATCH] Add redirection of output to /dev/null for xdg-open Signed-off-by: Apostolis Anastasiou --- ci/e2ereport.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/e2ereport.sh b/ci/e2ereport.sh index 0223dc46d..b88260ff9 100755 --- a/ci/e2ereport.sh +++ b/ci/e2ereport.sh @@ -11,7 +11,7 @@ if [ -z "${NO_OPEN:-}" ]; then if [ -s "$REPORT_OUTPUT" ]; then if command -v open >/dev/null; then open $REPORT_OUTPUT - elif [ -x "$(command -v xdg-open)" ]; then + elif [ -x "$(command -v xdg-open >/dev/null)" ]; then xdg-open $REPORT_OUTPUT else echo "Please open $REPORT_OUTPUT"