From 7d9cbe14a7747bf31a05b707f230289e02248bb0 Mon Sep 17 00:00:00 2001 From: Teva RIOU Date: Tue, 14 Dec 2021 02:15:04 +0100 Subject: [PATCH] fix(updatePublisher): linux os type check --- _updatePublisher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_updatePublisher.sh b/_updatePublisher.sh index e28128b..0fcd5e0 100755 --- a/_updatePublisher.sh +++ b/_updatePublisher.sh @@ -32,7 +32,7 @@ done echo "Checking internet connection" case "$OSTYPE" in - linux-gnu* ) ping tx.fhir.org -4 -c 1 -w 1000 >/dev/null ;; + linux* ) ping tx.fhir.org -4 -c 1 -w 1000 >/dev/null ;; darwin* ) ping tx.fhir.org -c 1 >/dev/null ;; *) echo "unknown: $OSTYPE"; exit 1 ;; esac