We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612d280 commit 6470537Copy full SHA for 6470537
airbyte/_executors/docker.py
@@ -81,7 +81,7 @@ def map_cli_args(self, args: list[str]) -> list[str]:
81
f"Found file input path `{arg}` "
82
f"relative to container-mapped volume: {local_volume}"
83
)
84
- mapped_path = container_path / Path(arg).relative_to(local_volume)
+ mapped_path = Path(container_path) / Path(arg).relative_to(local_volume)
85
logger.debug(f"Mapping `{arg}` -> `{mapped_path}`")
86
new_args.append(str(mapped_path))
87
break
0 commit comments