/bin/sh: ./node_modules/.bin/recess: No such file or directory
Created by: marceloverdijk
I followed instructions on http://twitter.github.com/bootstrap/extend.html#compiling to compile 2.3.0-wip branch.
I've installed the following components with sudo npm install -g less jshint recess uglify-js
When running make
I get:
192:bootstrap marceloverdijk$ make
##################################################
Building Bootstrap...
##################################################
Running JSHint on javascript... ✔ Done
/bin/sh: ./node_modules/.bin/recess: No such file or directory
make: *** [build] Error 127
192:bootstrap marceloverdijk$ ./node_modules/.bin/recess
As defined in the make file it's pointing to ./node_modules/.bin/recess
but when I check the install feedback I see:
uglify-js@2.2.3 /usr/local/lib/node_modules/uglify-js
├── source-map@0.1.8 (amdefine@0.0.4)
└── optimist@0.3.5 (wordwrap@0.0.2)
recess@1.1.6 /usr/local/lib/node_modules/recess
├── colors@0.6.0-1
├── watch@0.5.1
├── underscore@1.4.3
├── nopt@2.0.0 (abbrev@1.0.4)
└── less@1.3.3 (ycssmin@1.0.1)
jshint@0.9.1 /usr/local/lib/node_modules/jshint
├── minimatch@0.0.5 (lru-cache@1.0.6)
└── cli@0.4.3 (glob@3.1.14)
connect@2.7.2 /usr/local/lib/node_modules/connect
├── fresh@0.1.0
├── pause@0.0.1
├── cookie-signature@0.0.1
├── bytes@0.1.0
├── buffer-crc32@0.1.1
├── cookie@0.0.5
├── debug@0.7.0
├── formidable@1.0.11
├── qs@0.5.1
└── send@0.1.0 (range-parser@0.0.4, mime@1.2.6)
which is pointing to /usr/local/lib/node_modules/recess
Is there some misconfiguration on my side?
Cheers, Marcel