Skip to content

Commit

Permalink
docs: remove mention of --watch option
Browse files Browse the repository at this point in the history
  • Loading branch information
rezib committed Mar 6, 2024
1 parent 064ab2d commit d44fb7c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
REST API reference.
- Split documentation of `images` command options by subcommands in manpage.
- Replace `-w, --watch` option by opposite `--batch` option in manpage.
- Remove mention of `--watch` options in various pages of documentation.

### Fixed
- Fix crash on client side when loading artifact definition for OSI builds
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/admin/pages/purge.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ submitting an history purge task with this command:

[source,console]
----
$ fatbuildrctl history purge [-w,--watch]
$ fatbuildrctl history purge [--batch]
----

## Automatic purge
Expand Down
8 changes: 4 additions & 4 deletions docs/modules/install/pages/quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ pipelines:

[source,shell]
----
$ fatbuildrctl images --create --watch
$ fatbuildrctl images --create
----

This command submits tasks to create one container image per artifact format
Expand All @@ -246,7 +246,7 @@ command:

[source,shell]
----
$ fatbuildrctl images --create-envs --watch
$ fatbuildrctl images --create-envs
----

This submits tasks to create all build environments required for every
Expand All @@ -265,7 +265,7 @@ Fatbuildr installation:
----
$ fatbuildrctl build --artifact hello --distribution bullseye \
--basedir /usr/share/doc/fatbuildr/examples \
--name 'John Doe' --email john.doe@company.tld --message "First build!" --watch
--name 'John Doe' --email john.doe@company.tld --message "First build!"
----

This submits a task to:
Expand All @@ -291,7 +291,7 @@ Then you can build your first RPM package:
----
$ fatbuildrctl build --artifact hello --distribution el8 \
--basedir /usr/share/doc/fatbuildr/examples \
--message "First RPM build!" --watch
--message "First RPM build!"
----

This submits a task to build RPM packages of the same GNU Hello software for
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/usage/pages/utils.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ command:

[source,console]
----
$ fatbuildrctl build --artifact hello --basedir ~/base --distribution el8 --watch
$ fatbuildrctl build --artifact hello --basedir ~/base --distribution el8
----

0 comments on commit d44fb7c

Please sign in to comment.