Jumoo / uSync.Complete.Issues

Public Issue tracker and roadmap for uSync.Complete
https://jumoo.co.uk/usync/complete/
2 stars 1 forks source link

Push from windows to linux can fail due to paths inside zip file. #158

Closed KevinJump closed 2 years ago

KevinJump commented 2 years ago

When content is pushed from a windows installation to a linix one, it can fail because of the precense of '\' charecters in teh zip file. when linux expects '/'

Windows does infact work with '/' and there was a fix for netframework https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/mitigation-ziparchiveentry-fullname-path-separator

but because we zip each file up independently* we have to ensure we do this in code.

solution is to ensure all zip folders use '/'

*we zip the folders like this because it gives us better feedback if something goes wrong during the zip process.

KevinJump commented 2 years ago

fixed for 9.0.7