Skip to content

Commit

Permalink
fix: typo (#44)
Browse files Browse the repository at this point in the history
Signed-off-by: ThibaultFy <[email protected]>
  • Loading branch information
ThibaultFy authored Oct 14, 2022
1 parent 9dc2d3e commit ca22b0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion connectlib/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.21.6"
__version__ = "0.21.7"
2 changes: 1 addition & 1 deletion connectlib/remote/register/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _copy_local_packages(path: Path, local_dependencies: List[Path], python_majo
dest_path = path / dependency_path.name
if dependency_path.is_dir():
shutil.copytree(
dependency_path, dest_path, ignore=shutil.ignore_patterns("local_worker*", "tmp_connectlib*")
dependency_path, dest_path, ignore=shutil.ignore_patterns("local-worker*", "tmp_connectlib*")
)
elif dependency_path.is_file():
shutil.copy(dependency_path, dest_path)
Expand Down

0 comments on commit ca22b0a

Please sign in to comment.