Browse Source

Fixed exit status check for brew

pull/2508/merge
Jon Nall 6 years ago
committed by skullydazed
parent
commit
0b82d08e8d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/macos_install.sh

+ 1
- 1
util/macos_install.sh View File

@ -1,6 +1,6 @@
#!/bin/bash
if brew --version 2>&1 > /dev/null; then
if ! brew --version 2>&1 > /dev/null; then
echo "Error! Homebrew not installed or broken!"
echo -n "Would you like to install homebrew now? [y/n] "
while read ANSWER; do


Loading…
Cancel
Save