We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f466ca commit e9793dbCopy full SHA for e9793db
rsconnect/bundle.py
@@ -206,7 +206,8 @@ def flattened_data(self):
206
deploy_dir = self.deploy_dir or deploy_dir
207
for path in self.data["files"]:
208
rel_path = relpath(path, deploy_dir)
209
- new_data_files[rel_path] = self.data["files"][path]
+ manifestPath = Path(rel_path).as_posix()
210
+ new_data_files[manifestPath] = self.data["files"][path]
211
return new_data_files
212
213
@property
@@ -217,7 +218,8 @@ def flattened_buffer(self):
217
218
219
for k, v in self.buffer.items():
220
rel_path = relpath(k, deploy_dir)
- new_buffer[rel_path] = v
221
222
+ new_buffer[manifestPath] = v
223
return new_buffer
224
225
0 commit comments