1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-06 19:49:20 +00:00

scripts: update docs about make.py

This commit is contained in:
Thomas Waldmann 2024-01-30 23:21:04 +01:00
parent fd1dad2f79
commit 8bf7ad575a
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
2 changed files with 6 additions and 6 deletions

View file

@ -220,8 +220,8 @@ for easier use by packagers downstream.
When a command is added, a command line flag changed, added or removed,
the usage docs need to be rebuilt as well::
python scripts/gendocs.py build_usage
python scripts/gendocs.py build_man
python scripts/make.py build_usage
python scripts/make.py build_man
However, we prefer to do this as part of our :ref:`releasing`
preparations, so it is generally not necessary to update these when
@ -313,8 +313,8 @@ Checklist:
- Verify that ``MANIFEST.in``, ``pyproject.toml`` and ``setup.py`` are complete.
- Run these commands and commit::
python scripts/gendocs.py build_usage
python scripts/gendocs.py build_man
python scripts/make.py build_usage
python scripts/make.py build_man
- Tag the release::

View file

@ -521,8 +521,8 @@ class BuildMan:
def usage():
print(textwrap.dedent("""
Usage:
python scripts/gendocs.py build_usage # build usage documentation
python scripts/gendocs.py build_man # build man pages
python scripts/make.py build_usage # build usage documentation
python scripts/make.py build_man # build man pages
"""))