From b9492f648eba95c4568e25ec3ab5650d2ae12f1f Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Wed, 6 Nov 2024 14:20:23 +0100 Subject: [PATCH] let users know if we skip cask because of platform --- install/0-brew-cask.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/0-brew-cask.sh b/install/0-brew-cask.sh index bdd3f5f..793bbe9 100644 --- a/install/0-brew-cask.sh +++ b/install/0-brew-cask.sh @@ -13,4 +13,6 @@ apps=( # cask only supported on macos if [ "$(uname)" == "Darwin" ]; then brew install "${apps[@]}" --cask +else + echo "skipping cask for non-macos platform" fi