mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-22 16:34:38 +00:00
Fixed exit status check for brew
This commit is contained in:
parent
fdeb7f7665
commit
0b82d08e8d
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/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 "Error! Homebrew not installed or broken!"
|
||||||
echo -n "Would you like to install homebrew now? [y/n] "
|
echo -n "Would you like to install homebrew now? [y/n] "
|
||||||
while read ANSWER; do
|
while read ANSWER; do
|
||||||
|
|
Loading…
Reference in a new issue