13 lines
281 B
Bash
13 lines
281 B
Bash
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# (macOS only) Install iTerm2.
|
|
#
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
if ! command -v iterm2 &> /dev/null; then
|
|
brew install --cask iterm2
|
|
fi
|
|
fi
|