Files
dotfiles/script/install.d/74-dockutil.sh

17 lines
387 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
else
echo -e "${YELLOW}Skipping: Not macOS${NC}"
fi