From 67de863488806dc3f06aa18913810d33a12c653a Mon Sep 17 00:00:00 2001 From: sk89q Date: Sat, 25 Jul 2015 11:37:34 -0700 Subject: [PATCH] Updated Command Line Tools (markdown) --- Command-Line-Tools.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Command-Line-Tools.md b/Command-Line-Tools.md index 24464ba..d05d20a 100644 --- a/Command-Line-Tools.md +++ b/Command-Line-Tools.md @@ -2,16 +2,13 @@ You can build modpacks via command line tools as well. ## Building Modpacks -1. From the `launcher-builder/build/libs/` folder, copy `launcher-builder-X.Y.Z-SNAPSHOT-all.jar` to your modpack's folder. -2. Open terminal or command prompt and navigate to the directory of your modpack. - * Windows users: Hold down your SHIFT key, right click the folder that contains "modpack.json", and click "Open command window here". -3. Run the following command (note: **put it on one line**, and change "X.Y.Z" to the right version): +Get the .jar from the `launcher-builder/build/libs/` folder. ``` -java -jar launcher-builder-X.Y.Z-SNAPSHOT-all.jar - --version "pick_a_version" - --input . - --output upload +java -jar launcher-builder-X.Y.Z-SNAPSHOT-all.jar \ + --version "pick_a_version" \ + --input . \ + --output upload \ --manifest-dest "upload/your_modpack.json" ```