From 7ce46775068a8d3d16ccd9d5ee7dca9085ec3c87 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sun, 5 Jul 2015 19:12:12 +0200 Subject: [PATCH] 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. --- docs/Build.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Build.md b/docs/Build.md index 2fc3d62..6240701 100644 --- a/docs/Build.md +++ b/docs/Build.md @@ -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 @@ -23,4 +23,4 @@ While developing, you might want to use the following command to watch for chang gulp watch -`gulp` will automatically build Lychee everytime you save a file. \ No newline at end of file +`gulp` will automatically build Lychee everytime you save a file.