Fix english and typos in usage files.

[SCRIPTER]
* BUG: Fix english and typos in usage files.
* BUG: Fix a bailout message in test suite.
This commit is contained in:
gambas 2021-03-06 00:18:25 +01:00
parent 252acbc9f1
commit cdcaa4d292
3 changed files with 34 additions and 35 deletions

View file

@ -44,7 +44,7 @@ Public Sub CreateTestEnvironment()
Test.Note("") Test.Note("")
Test.Note("Or up may execute the shell script : sudo " & User.home &/ "bin/makegbs" & System.version & "tests") Test.Note("Or up may execute the shell script : sudo " & User.home &/ "bin/makegbs" & System.version & "tests")
Test.Note("From your ~/bin directory") Test.Note("From your ~/bin directory")
Test.BailOut("Please Create the required directories before continuing") Test.BailOut("Please create the required directories before continuing")
Endif Endif

View file

@ -2,24 +2,24 @@
Compile and execute a Gambas script. Compile and execute a Gambas script.
Usage: gbs3 [options][--] [<script file> | - ] Usage: gbs3 [options][--] [<script file> | - ]
gbs3 --convert-project <input project directory> <output script directory>
Options: Options:
-b --buildonly process and compile script do not execute -b --buildonly process and compile the script without executing it
-c --nocache force the script compilation (do not check cache) -c --nocache force the script compilation (do not check cache)
-e execute the source code provided by the command line ( ':' separator ) -e execute the source code provided by the command line ( ':' separator )
-g --debug add debugging information to application -g --debug add debugging information to application
-f --fast use just-in-time compiler -f --fast use just-in-time compiler
-h --help display this help -h --help display this help
-L --license display license -L --license display license
-S --strict Fail if Public or Sub defined and no main() defined -S --strict fail if 'Public' or 'Sub' are defined without a 'main' function
-t --trace turns on tracing option during execution -t --trace turn on tracing option during execution
-T --terse-listing Only print a very terse error report on compile errors -T --terse-listing only print a very terse error report on compile errors
-u --use force component loading ('comp1,comp2...') -u --use <components> force component loading ('comp1,comp2...')
-U --unsafe turn off all checks for address validation -U --unsafe allows jit compiler to generate unsafe faster code
-v --verbose be verbose -v --verbose be verbose
-V --version display Scripter version -V --version display version
-w --warnings display warnings during compilation -w --warnings display warnings during compilation
--convert-project <input Project directory> <output script directory> Convert a simple project to script --convert-project convert a simple project to a script
-- stop any further option processing
- if set as script name then gbs will read the script from stdin - read the script from standard input
-- Stops any further option processing

View file

@ -4,18 +4,17 @@ Compile and execute a Gambas server page script.
Usage: gbw3 [options] [--] [<server page file> | - ] Usage: gbw3 [options] [--] [<server page file> | - ]
Options: Options:
-b --buildonly process and compile WebPage do not execute -b --buildonly process and compile the server page without executing it
-c --nocache force the WebPage compilation (do not check cache) -c --nocache force the server page compilation (do not check cache)
-g --debug add debugging information to application -g --debug add debugging information to application
-f --fast use just-in-time compiler -f --fast use just-in-time compiler
-h --help display this help -h --help display this help
-L --license display license -L --license display license
-t --trace turns on tracing option during execution -t --trace turns on tracing option during execution
-u --use force components loading ('comp1,comp2...') -u --use <components> force components loading ('comp1,comp2...')
-U --unsafe turn off all checks for address validation -U --unsafe allows jit compiler to generate unsafe faster code
-v --verbose be verbose includes warnings -v --verbose be verbose
-V --version display version -V --version display version
-w --warnings display warning during compile -w --warnings display warnings during compilation
-- stop any further option processing
- if set as WebPage name causes gbw to read the WebPage Source from stdin - read the server page from standard input
-- Stops any further option processing