diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index f18541f..5183343 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -703,7 +703,7 @@ modules (\c{<env-modules>}) and the list of configuration options and variables \c{bbot} worker in the build directory as the current working directory. The re-executed \c{bbot} worker then proceeds to test the package from the -repository by executing the following commends, collectively called a +repository by executing the following commands, collectively called a \i{worker script}. Each command has a unique \i{step id} that can be used as a prefix in the \c{<config-args>} and \c{<env-config-args>} values as discussed in \l{#arch-controller Controller Logic}. The \c{<>}-values are from the task @@ -746,21 +746,21 @@ bpkg -v test <package-name> { # b.test-installed.create # - b create <config-args> <env-modules> <env-config-args> + b -v create <config-args> <env-modules> <env-config-args> # b.test-installed.configure # - b configure + b -v configure # b.test-installed.test # - b test + b -v test } } # bpkg.uninstall.uninstall # -bpkg uninstall <package-name> +bpkg -v uninstall <package-name> \ For details on configuring and testing installation refer to @@ -822,10 +822,10 @@ expressions are included into the build task manifest. Values in \c{<config-args>} can be opionally prefixed with the \i{step id} or a leading portion thereof to restrict it to a specific step, operation, or -tool in the \i{worked script} (\l{#arch-worker Worker Logic}). Unprefixed +tool in the \i{worked script} (see \l{#arch-worker Worker Logic}). Unprefixed values only apply to the \c{bpkg.configure.create} and \c{b.test-installed.create} steps. Note that options with values can only be -specified using a single argument notation. For example: +specified using the single argument notation. For example: \ bpkg:--fetch-timeout=600 bpkg.configure.fetch:--fetch-timeout=60 b:-j1 |