let users know if we skip cask because of platform

This commit is contained in:
2024-11-06 14:20:23 +01:00
parent dbd88d29a8
commit b9492f648e

View File

@@ -13,4 +13,6 @@ apps=(
# cask only supported on macos # cask only supported on macos
if [ "$(uname)" == "Darwin" ]; then if [ "$(uname)" == "Darwin" ]; then
brew install "${apps[@]}" --cask brew install "${apps[@]}" --cask
else
echo "skipping cask for non-macos platform"
fi fi