lightning-pub/scripts/install_rsync_mac.sh
Justin (shocknet) 4017e8ab5c deploy
2024-07-05 16:19:24 -04:00

10 lines
233 B
Bash
Executable file

#!/bin/bash
install_rsync_mac() {
check_homebrew
log "${PRIMARY_COLOR}Installing${RESET_COLOR} rsync using Homebrew..."
brew install rsync || {
log "${PRIMARY_COLOR}Failed to install rsync.${RESET_COLOR}"
exit 1
}
}