Procházet zdrojové kódy

Merge pull request #42 from vladdoster/patch-1

This will help macOS install not fail
Christian Chiarulli před 5 roky
rodič
revize
adf233d87e
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      utils/install.sh

+ 2 - 0
utils/install.sh

@@ -4,7 +4,9 @@ set -o nounset    # error when referencing undefined variable
 set -o errexit    # exit when command fails
 
 installnodemac() { \
+  brew install lua
   brew install node
+  brew install yarn
 }
 
 installnodeubuntu() { \