1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00
mac-setup/extra.sh
Daniel Barber a67e85a036
Use process substitution to run the script
This ensures that we can get input from the terminal.
2019-04-22 22:25:50 -04:00

18 lines
332 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
MAC_SETUP_DIR="$HOME/mac-setup"
BOLD="\033[1m"
WHITE="\033[0;37m"
YELLOW="\033[1;33m"
GREEN="\033[1;32m"
NC="\033[0m"
step() {
echo "${YELLOW} ${WHITE}${BOLD}$1${NC} ${YELLOW}${NC}"
}
# Install brew bundles
step "Installing Homebrew bundle extra"
brew bundle --file="$MAC_SETUP_DIR/Brewfile.extra"