Skip to content

Commit

Permalink
transfer directory fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a1fred committed Jul 21, 2022
1 parent 1401ff5 commit 06f3c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion carnival/contrib/steps/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _transfer_file(
# Create dirs if needed
dirname = os.path.dirname(writer_dst_path)
if dirname:
writer_conn.run(f"mkdir -p {dirname}", hide=True)
writer_conn.run(f'mkdir -p "{dirname}"', hide=True)

tempfile_path = os.path.join(writer_conn.tempdir, f'carnival.{uuid4()}.tmp')

Expand Down

0 comments on commit 06f3c52

Please sign in to comment.