Files
dotfiles/script/install.d/74-dockutil.sh
2024-06-21 10:13:50 +01:00

15 lines
334 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install dockutil.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! brew list dockutil &> /dev/null; then
brew install dockutil
else
echo "dockutil is already installed."
fi
fi