For Mac apps I had an issue, .app disappeared from xcode archive, generated by gym. It wasn't the case, when destination .app existed in project directory, but it didn't get overwrited with new archive.
So, I've replace mv with cp_r command, because in case of Mac app original .app archive should be preserved in source archive directory.
For Mac apps I had an issue,
.app
disappeared from xcode archive, generated by gym. It wasn't the case, when destination.app
existed in project directory, but it didn't get overwrited with new archive.So, I've replace
mv
withcp_r
command, because in case of Mac app original .app archive should be preserved in source archive directory.