Skip to content

Commit

Permalink
print changed version
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Nov 15, 2024
1 parent 03da9a3 commit 1eb51db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/hicservices_rdmp/tasks/deploy_rdmp_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def main() -> int:
assert len(rdmp_cli_dir) == 1, f"Expected only one match: {rdmp_cli_dir}"
shutil.copytree(rdmp_cli_dir[0], f"{install_dir}/rdmp-cli")

print(f"Deployed v{version}")
rc = 1

return rc
Expand Down
1 change: 1 addition & 0 deletions roles/smi_isidentifiable/tasks/deploy_isidentifiable.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def main() -> int:
for f in glob.glob(f"{tempdir}/*.{ext}"):
shutil.copy2(f, f"{install_dir}/")

print(f"Deployed v{version}")
rc = 1

return rc
Expand Down
1 change: 1 addition & 0 deletions roles/smi_smiservices/tasks/deploy_smiservices.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def main() -> int:
ctp_jar = f"{tempdir}/ctpanonymiser-1.0.0/CTPAnonymiser-portable-1.0.0.jar"
shutil.copy2(ctp_jar, f"{install_dir}/CTPAnonymiser.jar")

print(f"Deployed v{version}")
rc = 1

return rc
Expand Down

0 comments on commit 1eb51db

Please sign in to comment.