Skip to content

Commit

Permalink
Ignore dry-run when updating vendor package. Otherwise, the dry-run w…
Browse files Browse the repository at this point in the history
…ill report there were no changes in the vendor package

Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey committed Sep 26, 2024
1 parent f049c45 commit 807070d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def execute_update_vendor_package_tool(vendor_tool_path,
f"{vendor_tool_path}/create_gz_vendor_pkg/create_vendor_package.py",
'package.xml',
'--output_dir', vendor_repo_path]
_, _err_run = check_call(run_cmd)
_, _err_run = check_call(run_cmd, IGNORE_DRY_RUN)
if _err_run:
print("Problems running the create_vendor_package.py script:")
print(_err_run.decode())
Expand Down

0 comments on commit 807070d

Please sign in to comment.