I am trying to create bootstrap from source code. This causes the following error when I try to run the make .
Running JSHint on javascript... รข Done /bin/sh: 1: recess: not found make: *** [build] Error 127
This is what I have done so far.
- Clone
git clone git://github.com/twitter/bootstrap.git boot repository git clone git://github.com/twitter/bootstrap.git - Install npm
apt-get intall npm - Install less
npm install -g less - Install jshint
npm install -g jshint - Install make
apt-get install make
What am I missing here?
source share