docs update with warning

This commit is contained in:
kjeld Schouten-Lebbing 2022-01-20 17:04:21 +01:00
parent 92dbb40007
commit c43251f390
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
setup(
name="truetool",
version="3.0.0",
version="3.0.1",
# The packages that constitute your project.
# For my project, I have only one - "pydash".

View File

@ -98,7 +98,7 @@ def process_args():
global RESTORE
global LIST
global DELETE
parser = argparse.ArgumentParser(description='Update TrueNAS SCALE Apps')
parser = argparse.ArgumentParser(description='Update TrueNAS SCALE Apps \n please do NOT combine short arguments like -ubs always use -u -b -s etc.')
parser.add_argument('-c', '--catalog', nargs='?', default='ALL', help='name of the catalog you want to process in caps. Or "ALL" to render all catalogs.')
parser.add_argument('-v', '--versioning', nargs='?', default='minor', help='Name of the versioning scheme you want to update. Options: major, minor or patch. Defaults to minor')
parser.add_argument('-b', '--backup', nargs='?', const='14', help='backup the complete Apps system prior to updates, add a number to specify the max old backups to keep')