From 2c004538a3bed5d79e6ec08c43e0c6884116df45 Mon Sep 17 00:00:00 2001 From: BrainCrumbz Date: Tue, 1 Dec 2015 19:44:10 +0100 Subject: [PATCH] Add examples for Windows script/build The command line parameters for script/build command where missing examples on how they should be run. That might be usefule for people starting active contribution to the project. --- docs/build-instructions/windows.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/build-instructions/windows.md b/docs/build-instructions/windows.md index debdd6570..7eb2ed03d 100644 --- a/docs/build-instructions/windows.md +++ b/docs/build-instructions/windows.md @@ -31,8 +31,14 @@ Note: If you use cmd or Powershell instead of Git Shell, use a backslash instead These instructions will assume the use of Git Shell. ### `script/build` Options - * `--install-dir` - Creates the final built application in this directory. - * `--build-dir` - Build the application in this directory. + * `--install-dir` - Creates the final built application in this directory. Example (trailing slash is optional): +```bash +./script/build --install-dir Z:\Some\Destination\Directory\ +``` + * `--build-dir` - Build the application in this directory. Example (trailing slash is optional): +```bash +./script/build --build-dir Z:\Some\Temporary\Directory\ +``` * `--verbose` - Verbose mode. A lot more information output. ## Why do I have to use GitHub Desktop?