Reputation: 3
I use this command to compile my *.coffee file to ../js folder
coffee -o ../js -wcbm ./
I excute above command In the first time, everything is ok, *.coffee file is compiled
Then i use "Ctrl+S" to save my coffee file and this coffee file is not change, But i get a error:
Bus error: 10
Note;everything is ok Yesterday, But when i Upgrade my OSX 10.8 to OSX 10.9, This problem arises
Upvotes: 0
Views: 274
Reputation: 1
That solved the Problem, thanks. By the way, a nice way to upgrade Node.js via NPM:
http://davidwalsh.name/upgrade-nodejs
Upvotes: 0
Reputation: 46
Its problem with your OS X upgrade. NodeJS seems to have problem with watching files, if you upgrade to newest version NodeJS (v0.10.21) after that should be okay. This is helped me.
Upvotes: 1