Files
dotfiles/script/install.d/74-dockutil.sh
2025-12-23 20:53:55 +02:00

16 lines
364 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install dockutil.
#
# macOS only
[[ "$DOTS_OS" != "macos" ]] && { log_warn "Skipping: Not macOS"; return 0; }
if ! brew list dockutil &> /dev/null; then
brew install dockutil
else
echo "dockutil is already installed."
fi