Skip to content

Commit

Permalink
fix(updatePublisher): linux os type check
Browse files Browse the repository at this point in the history
  • Loading branch information
tevariou committed Dec 9, 2021
1 parent 7bc0f88 commit 16d0c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _updatePublisher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 16d0c32

Please sign in to comment.