From: Eduardo Date: Fri, 14 Mar 2014 15:57:17 +0000 (-0300) Subject: grunt build should be run inside project folder. X-Git-Tag: v5.2.2~92^2~16^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4680%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git grunt build should be run inside project folder. Non grunt users might not figure out that 'grunt build' should be run inside project folder. This commit improve SASS doc by adding an explicit 'cd' command before build. --- diff --git a/doc/pages/sass.html b/doc/pages/sass.html index 7afaed206..28d7c292a 100644 --- a/doc/pages/sass.html +++ b/doc/pages/sass.html @@ -48,9 +48,10 @@ Next we'll use the Foundation CLI to create a new project: foundation new project_name --libsass ``` -Boom, your project is created! Now you need to use Grunt to compile everything before you start working. Run this command +Boom, your project is created! Now you need to use Grunt to compile everything before you start working: ```bash +cd project_name grunt build ```