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("Or up may execute the shell script : sudo " & User.home &/ "bin/makegbs" & System.version & "tests")
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

View file

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

View file

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