From 33ddd4f6482efa3c1fadcaf7f3fa88a50c1db314 Mon Sep 17 00:00:00 2001 From: EvangMM Date: Wed, 18 Sep 2024 12:15:04 +0200 Subject: [PATCH] fix --- core/digitalhub_core/entities/utils.py | 2 +- core/pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/digitalhub_core/entities/utils.py b/core/digitalhub_core/entities/utils.py index de94759c6..ff6695d16 100644 --- a/core/digitalhub_core/entities/utils.py +++ b/core/digitalhub_core/entities/utils.py @@ -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 diff --git a/core/pyproject.toml b/core/pyproject.toml index fbdad29d5..122479ddf 100644 --- a/core/pyproject.toml +++ b/core/pyproject.toml @@ -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 = [ @@ -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