Need to return any error code from running antsibull-docs (#70763)
This way we fail early if there's a problem
This commit is contained in:
parent
59513ae673
commit
1e3989c9f7
1 changed files with 6 additions and 6 deletions
|
@ -52,9 +52,9 @@ def generate_base_docs(args):
|
||||||
f.write(yaml.dump(deps_file_contents))
|
f.write(yaml.dump(deps_file_contents))
|
||||||
|
|
||||||
# Generate the plugin rst
|
# Generate the plugin rst
|
||||||
antsibull_docs.run(['antsibull-docs', 'stable', '--deps-file', modified_deps_file,
|
return antsibull_docs.run(['antsibull-docs', 'stable', '--deps-file', modified_deps_file,
|
||||||
'--ansible-base-cache', str(args.top_dir),
|
'--ansible-base-cache', str(args.top_dir),
|
||||||
'--dest-dir', args.output_dir])
|
'--dest-dir', args.output_dir])
|
||||||
|
|
||||||
# If we make this more than just a driver for antsibull:
|
# If we make this more than just a driver for antsibull:
|
||||||
# Run other rst generation
|
# Run other rst generation
|
||||||
|
@ -107,9 +107,9 @@ def generate_full_docs(args):
|
||||||
f.write(yaml.dump(deps_data))
|
f.write(yaml.dump(deps_data))
|
||||||
|
|
||||||
# Generate the plugin rst
|
# Generate the plugin rst
|
||||||
antsibull_docs.run(['antsibull-docs', 'stable', '--deps-file', modified_deps_file,
|
return antsibull_docs.run(['antsibull-docs', 'stable', '--deps-file', modified_deps_file,
|
||||||
'--ansible-base-cache', str(args.top_dir),
|
'--ansible-base-cache', str(args.top_dir),
|
||||||
'--dest-dir', args.output_dir])
|
'--dest-dir', args.output_dir])
|
||||||
|
|
||||||
# If we make this more than just a driver for antsibull:
|
# If we make this more than just a driver for antsibull:
|
||||||
# Run other rst generation
|
# Run other rst generation
|
||||||
|
|
Loading…
Reference in a new issue