Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EvangMM committed Sep 18, 2024
1 parent cb1023d commit 33ddd4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/digitalhub_core/entities/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,6 @@ def build_log_path_from_source(
if isinstance(source, list) or Path(source).is_dir():
path += "/"
elif Path(source).is_file():
path += Path(source).name
path += f"/{Path(source).name}"

return path
4 changes: 2 additions & 2 deletions core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "digitalhub-core"
version = "0.7.0b14"
version = "0.7.0b15"
description = "Python SDK for DHCore core layer"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -67,7 +67,7 @@ line-length = 120
convention = "numpy"

[tool.bumpver]
current_version = "0.7.0b14"
current_version = "0.7.0b15"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = false
Expand Down

0 comments on commit 33ddd4f

Please sign in to comment.