Skip to content

Commit 1a55833

Browse files
Update src/nat/cli/commands/object_store/object_store.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Will Killian <[email protected]>
1 parent a73557e commit 1a55833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nat/cli/commands/object_store/object_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ async def upload_command(store: ObjectStore, local_dir: Path, **_kwargs):
131131
# Process each file recursively
132132
for file_path in local_dir.rglob("*"):
133133
if file_path.is_file():
134-
key = str(file_path.relative_to(local_dir))
134+
key = file_path.relative_to(local_dir).as_posix()
135135
await upload_file(store, file_path, key)
136136
file_count += 1
137137

0 commit comments

Comments
 (0)