From 43c2e299c9e1d9b36749f8acb086466f3ce68c54 Mon Sep 17 00:00:00 2001 From: jonpas Date: Sat, 5 Nov 2016 20:10:08 +0100 Subject: [PATCH] Fix make.py checkexternal argument documentation --- .../development/setting-up-the-development-environment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/wiki/development/setting-up-the-development-environment.md b/docs/wiki/development/setting-up-the-development-environment.md index f2cdfc01ab..5efb993dbe 100644 --- a/docs/wiki/development/setting-up-the-development-environment.md +++ b/docs/wiki/development/setting-up-the-development-environment.md @@ -77,7 +77,7 @@ To create a complete build of ACE3 that you can use without the source files you When the requirements are met: -- Execute `make.py version increment_build force check_external release` in the `tools` folder, replacing `` with the part of version you want to increment (options described below) +- Execute `make.py version increment_build force checkexternal release` in the `tools` folder, replacing `` with the part of version you want to increment (options described below) This will populate the `release` folder with binarized PBOs, compiled extensions, copied extras, bisigns and a bikey. Additionally, an archive file will also be created in the folder. The folder and archive handle like those of any other mod. @@ -89,7 +89,7 @@ Different `make.py` command line options include: - `increment_minor` - increments _minor_ version number and resets _patch_ version number to `0` (ignored with `increment_major`) - `increment_major` - increments _major_ version number and resets _minor_ and _patch_ version numbers to `0` - `force` - force rebuild all PBOs, even those already present in the `release` directory (combined with `compile` it will also rebuild all extensions) -- `check_external` - check external references (incompatible only with ` ` and `force `) +- `checkexternal` - check external references (incompatible only with ` ` and `force `) - `release` - create release packages/archives - ` ` - build only specified component(s) (incompatible with `release`) - `force ` - force rebuild specified component(s) (incompatible with `release`)