bugfix/build_docs_add_warning_check: Added null value check for warnings

This commit is contained in:
Supreet Deshpande
2020-02-11 16:33:24 +05:30
parent 7f4309d0f1
commit ef7b5ff9e4
3 changed files with 6 additions and 9 deletions

View File

@@ -95,6 +95,8 @@ def main():
targets = [args.target]
if args.action == "build" or args.action is None:
if args.action is None:
args.check_warnings_only = False
sys.exit(action_build(args))
if args.action == "linkcheck":