Setup/Fixup

* even more forgotten renames in help text
 * see 07e001ee9c
This commit is contained in:
Sarjuuk
2024-08-24 15:11:31 +02:00
parent 7d2e306f0c
commit 075e15ba0c
4 changed files with 5 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ CLISetup::registerUtility(new class extends UtilityScript
return true;
}
CLI::write(' usage: php aowow --sql=<SetupScriptList,> [--mpqDataDir: --locales:]', -1, false);
CLI::write(' usage: php aowow --sql=<SetupScriptList,> [--datasrc: --locales:]', -1, false);
CLI::write();
CLI::write(' Regenerates DB table content for a given SetupScript. Dependencies are taken into account by the triggered calls of --sync and --update', -1, false);
CLI::write();

View File

@@ -17,7 +17,7 @@ CLISetup::registerUtility(new class extends UtilityScript
public $optGroup = CLISetup::OPT_GRP_UTIL;
public const COMMAND = 'dbc';
public const DESCRIPTION = 'Extract dbc files from mpqDataDir into sql table. Structural ini file must be defined in setup/tools/dbc/.';
public const DESCRIPTION = 'Extract dbc files from datasrc into sql table. Structural ini file must be defined in setup/tools/dbc/.';
public const APPENDIX = '=<dbcfileList,> [tablename [wowbuild]]';
public const REQUIRED_DB = [DB_AOWOW];
@@ -62,7 +62,7 @@ CLISetup::registerUtility(new class extends UtilityScript
{
CLI::write(' usage: php aowow --dbc=<dbcfileList,..> [--locales=<regionCodes,..>] [tablename [wowbuild]]', -1, false);
CLI::write();
CLI::write(' Extract dbc files from mpqDataDir into sql table. If the dbc file contains a locale block, data from all available locales gets merged into the same table.', -1, false);
CLI::write(' Extract dbc files from datasrc into sql table. If the dbc file contains a locale block, data from all available locales gets merged into the same table.', -1, false);
CLI::write();
CLI::write(' Known WoW builds:', -1, false);

View File

@@ -141,7 +141,7 @@ CLISetup::registerUtility(new class extends UtilityScript
return true;
}
CLI::write(' usage: php aowow --build=<SetupScriptList,> [--mpqDataDir: --locales:]', -1, false);
CLI::write(' usage: php aowow --build=<SetupScriptList,> [--datasrc: --locales:]', -1, false);
CLI::write();
CLI::write(' Compiles files for a given SetupScript. Existing files are kept by default. Dependencies are taken into account by the triggered calls of --sync --update', -1, false);
CLI::write();

View File

@@ -88,7 +88,7 @@ CLISetup::registerUtility(new class extends UtilityScript
public function writeCLIHelp() : bool
{
CLI::write(' usage: php aowow --sync=<tableList,> [--locales: --mpqDataDir: --force -f]', -1, false);
CLI::write(' usage: php aowow --sync=<tableList,> [--locales: --datasrc: --force -f]', -1, false);
CLI::write();
CLI::write(' Truncates and recreates AoWoW tables and static data files that depend on the given TC world table. Use this command after you updated your world database.', -1, false);
CLI::write();