Skip to content

Commit

Permalink
Remove dots from artifacts path #57
Browse files Browse the repository at this point in the history
  • Loading branch information
atarutin committed May 10, 2024
1 parent ac9018e commit a2ce20e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def get_artifacts_folder_path(
"artifactsFolderPathTemplate is not specified in config"
)
formatted = template.format(
nova=f"Nova {nova_version}.",
delivery=f"Delivery {delivery}.",
hotfix=f" Hotfix {hotfix}" if hotfix else "",
nova=f"Nova {nova_version}",
delivery=f"Delivery {delivery}",
hotfix=f"Hotfix {hotfix}" if hotfix else "",
)

return fs.sanitize_path(formatted)
Expand Down

0 comments on commit a2ce20e

Please sign in to comment.