Skip to content
Snippets Groups Projects
Commit 9a299c792156 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: docker_build_copy: Do not do strange thing if . is defined in python_packages

parent f00526229a71
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
History History
======= =======
21.0.1
------
docker_build_copy: Do not do strange thing if . is defined in python_packages
21.0.0 21.0.0
------ ------
......
...@@ -22,5 +22,5 @@ ...@@ -22,5 +22,5 @@
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)
__version__ = "2.4.0" __version__ = "2.4.1"
__date__ = "2020-06-30" __date__ = "2020-06-30"
...@@ -26,5 +26,5 @@ ...@@ -26,5 +26,5 @@
__date__ = "2020-06-30" __date__ = "2020-06-30"
__updated__ = "2023-10-17" __updated__ = "2023-11-15"
_PYTHON_PACKAGES_DIR = "python_packages" _PYTHON_PACKAGES_DIR = "python_packages"
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
def _target_path(path: str) -> str: def _target_path(path: str) -> str:
return path.replace(os.path.sep, "-") return "pkg-" + path.replace(os.path.sep, "-")
def copy( def copy(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment