I want to copy selected build products, preserving their part of the directory structure, but this:
Dir.chdir('build/sources/ios_src') {
FileUtils.cp_r(Dir.glob('build/Build/Products/*/*.app*'), '/tmp/bcsh')
}
results in
Errno::ENOENT: No such file or directory @ dir_s_mkdir - /tmp/bcsh/Booble.app
despite the glob returning this:
Dir.chdir('build/sources/ios_src') {
Dir.glob('build/Build/Products/*/*.app*')
}
=> ["build/Build/Products/Calabash-iphonesimulator/Booble.app",
"build/Build/Products/Calabash-iphonesimulator/Booble.app.dSYM"]
I want /tmp/bsch/build/Build/Products/.../Booble.app
and .../Booble.app.dSYM
not /tmp/bcsh/Booble.app
and /tmp/bcsh/Booble.app.dSYM
.
For clarity, I'm capable of creating a directory, but the error more usefully shows that the files would end up where I don't want them than more verbiage.