Use src/ instead of build/ directory

The dependency file package.json is in src/ so npm install should be run from there.

Also remove the extra ";" at the end of line. This is shell code, not JavaScript.
pull/373/head
Ludovic Rousseau 9 years ago
parent 2ca41af481
commit 7ce4677506

@ -9,9 +9,9 @@ First you have to install the following dependencies:
After [installing Node.js](http://nodejs.org) you can use the included `npm` package manager to install the global requirements and Lychee-dependencies with the following command:
cd build/;
npm install -g bower gulp;
npm install && bower install;
cd src/
npm install -g bower gulp
npm install && bower install
### Build

Loading…
Cancel
Save