OS X를 Lion 에서 Moutain Lion 으로 업그레이드 후 mrt를 가동시켰더니
$ mrt
Stand back while Meteorite does its thing
smart.json changed.. installing from smart.json
Installing Meteor
branch: https://github.com/meteor/meteor.git#master
Installing smart packages
events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn ENOENT
at errnoException (child_process.js:948:11)
at Process.ChildProcess._handle.onexit (child_process.js:739:34)
이런 오류가 날때가 있다.
spawn 을 하다가 오류가 났다는 건 외부 파일 실행을 하는 게 실패해서 인가 싶어서 보니
meteorite은 git을 사용하고 있었지. 그랬었지.
which git 해보니 없었다.
http://git-scm.com/ 여기 가서 다운받고 설치하자.
평화적으로 잘 해결이 되었다.
사실 해보고 나서 생각해보니 OS X에서 업글을 할때 git path를 잡아놓았던게 없어져서 그런 것인데
path 에 /usr/local/git/bin를 추가해주기만 해도 해결된다.
git을 다시 설치하면 /etc/paths.d/git 아래에 path를 잡아준다.
sudo sh -c 'which git > /etc/paths.d/git'
이런 식으로 잡아줘도 무방.
댓글
댓글 쓰기