Merge pull request #49 from andrejusk/add-appcleaner

Add AppCleaner to macOS install
This commit is contained in:
2024-12-04 12:48:40 +00:00
committed by GitHub

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install AppCleaner.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! brew list --cask appcleaner &> /dev/null; then
brew install --cask appcleaner
echo "AppCleaner has been installed."
else
echo "AppCleaner is already installed."
fi
fi