summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2022-04-25 11:27:16 -0700
committerMatt Clay <matt@mystile.com>2022-04-25 12:21:09 -0700
commitb8793fa48db24ec351483b57bb7d521b316e2e60 (patch)
treeee5dc48e748a3ff4fbdd84dce7aa602e28d6f0a6 /hacking
parent1802684c7b94cd323e573c5b89cc77e4e1552c83 (diff)
downloadansible-b8793fa48db24ec351483b57bb7d521b316e2e60.tar.gz
Fix use of deprecated antsibull-docs option.
Diffstat (limited to 'hacking')
-rw-r--r--hacking/build_library/build_ansible/command_plugins/docs_build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hacking/build_library/build_ansible/command_plugins/docs_build.py b/hacking/build_library/build_ansible/command_plugins/docs_build.py
index 5a9833f187..361a8107f4 100644
--- a/hacking/build_library/build_ansible/command_plugins/docs_build.py
+++ b/hacking/build_library/build_ansible/command_plugins/docs_build.py
@@ -119,7 +119,7 @@ def generate_base_docs(args):
# Generate the plugin rst
return antsibull_docs.run(['antsibull-docs', 'stable', '--deps-file', modified_deps_file,
- '--ansible-base-source', str(args.top_dir),
+ '--ansible-core-source', str(args.top_dir),
'--dest-dir', args.output_dir])
# If we make this more than just a driver for antsibull:
@@ -170,7 +170,7 @@ def generate_full_docs(args):
# Generate the plugin rst
return antsibull_docs.run(['antsibull-docs'] + params +
- ['--ansible-base-source', str(args.top_dir),
+ ['--ansible-core-source', str(args.top_dir),
'--dest-dir', args.output_dir])
# If we make this more than just a driver for antsibull: