From 8d33663523e4cc2c92ce5514f30f8d17297fbbfc Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Thu, 27 Aug 2015 17:23:59 -0700 Subject: [PATCH] Updated Adding support for a new Mod (markdown) --- Adding-support-for-a-new-Mod.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Adding-support-for-a-new-Mod.md b/Adding-support-for-a-new-Mod.md index e0e8e89..3fbefb1 100644 --- a/Adding-support-for-a-new-Mod.md +++ b/Adding-support-for-a-new-Mod.md @@ -8,15 +8,15 @@ Create a fork of this repo in which to make your changes. If you're not sure ho Crafting Guide comes with a number of different command-line scripts for processing data and testing. You'll need to get your machine set up with a few command-line tools to run them before you can begin. Start by downloading [Node.js](http://nodejs.org/download/) for your OS and installing it. Next, open a terminal and navigate to your new local repo. Run the following commands to get the rest of the tools you need and build everything locally. ```bash -cd ../crafting-guide-data -grunt test -cd ../crafting-guide sudo npm install -g coffee-script sudo npm install -g grunt-cli +cd ../crafting-guide-data +npm install +grunt test +cd ../crafting-guide npm install grunt clean build ./scripts/server -cd ../crafting-guide-data ``` _**NOTE:** If you're using Windows (instead of MacOS or Linux), you'll want to perform all of these commands using the [Git for Windows](https://msysgit.github.io/) shell. You will also need to install [rsync](https://www.itefix.net/content/get-cwrsync) manually. Finally, windows users should leave out the word `sudo` from all commands._