feat: remove arc/appcleaner
This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
# Description:
|
|
||||||
# (macOS only) Install Arc Browser.
|
|
||||||
#
|
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
||||||
if ! brew list arc &> /dev/null; then
|
|
||||||
brew install --cask arc
|
|
||||||
else
|
|
||||||
echo "Arc Browser is already installed."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
log_warn "Skipping: Not macOS"
|
|
||||||
fi
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
#!/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
|
|
||||||
else
|
|
||||||
log_warn "Skipping: Not macOS"
|
|
||||||
fi
|
|
||||||
Reference in New Issue
Block a user