We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e198e2 commit 3732cd8Copy full SHA for 3732cd8
cloudinary_cli/modules/sync.py
@@ -96,7 +96,7 @@ def push(self):
96
}
97
uploads = []
98
for file in to_upload:
99
- folder = path_join(self.remote_dir, sep.join(file.split(sep)[:-1]))
+ folder = "/".join([self.remote_dir, *split(file)[:-1]])
100
101
uploads.append((self.local_files[file]['path'], {**options, 'folder': folder}))
102
0 commit comments