From 78c560a1928d771a0755993bbc22e5a00bff905f Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Fri, 2 Dec 2022 13:55:07 -0500 Subject: [PATCH] Updated help messages --- etc/scripts/docenizers/docenizer-amd64.py | 2 +- etc/scripts/docenizers/docenizer-arm32.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/scripts/docenizers/docenizer-amd64.py b/etc/scripts/docenizers/docenizer-amd64.py index c1bba19ca..0e5ea96e0 100755 --- a/etc/scripts/docenizers/docenizer-amd64.py +++ b/etc/scripts/docenizers/docenizer-amd64.py @@ -19,7 +19,7 @@ parser = argparse.ArgumentParser(description='Docenizes HTML version of the offi parser.add_argument('-i', '--inputfolder', type=str, help='Folder where the input files reside as .html. Default is ./asm-docs/', default='asm-docs') -parser.add_argument('-o', '--outputpath', type=str, help='Final path of the .ts file. Default is ./asm-docs.ts', +parser.add_argument('-o', '--outputpath', type=str, help='Final path of the .ts file. Default is ./asm-docs-amd64.ts', default='./asm-docs-amd64.ts') parser.add_argument('-d', '--downloadfolder', type=str, help='Folder where the archive will be downloaded and extracted', default='asm-docs') diff --git a/etc/scripts/docenizers/docenizer-arm32.py b/etc/scripts/docenizers/docenizer-arm32.py index 9d69e9785..7dccdcea9 100755 --- a/etc/scripts/docenizers/docenizer-arm32.py +++ b/etc/scripts/docenizers/docenizer-arm32.py @@ -19,7 +19,7 @@ parser = argparse.ArgumentParser(description='Docenizes XML version of the offic parser.add_argument('-i', '--inputfolder', type=str, help='Folder where the input files reside as .xml. Default is ./asm-docs-arm/', default='asm-docs-arm') -parser.add_argument('-o', '--outputpath', type=str, help='Final path of the .ts file. Default is ./asm-docs-arm.ts', +parser.add_argument('-o', '--outputpath', type=str, help='Final path of the .ts file. Default is ./asm-docs-arm32.ts', default='./asm-docs-arm32.ts') parser.add_argument('-d', '--downloadfolder', type=str, help='Folder where the archive will be downloaded and extracted', default='asm-docs-arm') -- GitLab