brew update
updates brew
, assim como as fórmulas.
update Fetch the newest version of Homebrew from GitHub using git(1).
Comecei hoje com o Homebrew 0.7.1 e consegui o seguinte:
$ brew info node
node 0.4.0
http://nodejs.org/
Not installed
Então eu corri brew update
e obtive:
$ brew info node
node 0.4.2
http://nodejs.org/
Not installed
e
$ sudo brew install node
==> Downloading http://nodejs.org/dist/node-v0.4.2.tar.gz
######################################################################## 100,0%
==> ./configure --prefix=/usr/local/Cellar/node/0.4.2
Portanto, se o seu brew
estiver atualizado, você também deve ter acesso a uma versão atual de node
- tente brew install node
novamente.
Se isso não ajudar, tente executar which node
para ver se esse é realmente o Homebrew node
em que você está executando node -v
on.