Skip to content

Commit

Permalink
Fix issue with decouping
Browse files Browse the repository at this point in the history
  • Loading branch information
Teyler7 committed May 8, 2022
1 parent 0ae4a1e commit c87226f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
15 changes: 0 additions & 15 deletions install-packages.sh

This file was deleted.

15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ InstallCore () {
# Install Brew and zurg Brew packages
sh install-packages.sh

# Check for Homebrew, install if it does not exist
echo "Looking for Homebrew..."
if test ! $(which brew); then
echo "Installing homebrew..."
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
fi
echo "Homebrew Installed ✅"

echo "Installing and upgrading packages..."
brew install ${PACKAGES[@]}
echo "Packages installed 📦"

echo "Cleaning up 🧹"
brew cleanup

# Moving .zprofile to home directory. This points default zsh to use zurg instead.
cp ${HOME}/zurg-cli/.zprofile ${HOME}

Expand Down

0 comments on commit c87226f

Please sign in to comment.