17 lines
377 B
Bash
17 lines
377 B
Bash
#!/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
|