File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,8 @@ def flattened_data(self):
206
206
deploy_dir = self .deploy_dir or deploy_dir
207
207
for path in self .data ["files" ]:
208
208
rel_path = relpath (path , deploy_dir )
209
- new_data_files [rel_path ] = self .data ["files" ][path ]
209
+ manifestPath = Path (rel_path ).as_posix ()
210
+ new_data_files [manifestPath ] = self .data ["files" ][path ]
210
211
return new_data_files
211
212
212
213
@property
@@ -217,7 +218,8 @@ def flattened_buffer(self):
217
218
deploy_dir = self .deploy_dir or deploy_dir
218
219
for k , v in self .buffer .items ():
219
220
rel_path = relpath (k , deploy_dir )
220
- new_buffer [rel_path ] = v
221
+ manifestPath = Path (rel_path ).as_posix ()
222
+ new_buffer [manifestPath ] = v
221
223
return new_buffer
222
224
223
225
@property
You can’t perform that action at this time.
0 commit comments