Sometimes when you attempt an import to a space you get an error
"Could not locate exportDescriptor.properties in the archive"
This often happened when you are on a Macbook, there is a known issue where browsers on Macs download ZIP files and automatically unzip them and zip them up again. When the folder is zipped up it contains files like DStore or MACOSX which causes the error.
To resolve it you can do the following:
zip -r archive.zip entities.xml exportDescriptor.properties attachment/
zip -r archive.zip . -x "*/.DS_Store" -x ".DS_Store"
Elelta D
0 comments