diff options
Diffstat (limited to 'xmake/modules/utils/ipa/package.lua')
| -rw-r--r-- | xmake/modules/utils/ipa/package.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/utils/ipa/package.lua b/xmake/modules/utils/ipa/package.lua index 30f14bd4a..54bf291c1 100644 --- a/xmake/modules/utils/ipa/package.lua +++ b/xmake/modules/utils/ipa/package.lua @@ -53,11 +53,11 @@ function main (appdir, ipafile, iconfile) os.mkdir(path.join(tmpdir, "Payload")) -- copy the .app directory into payload - os.cp(appdir, path.join(tmpdir, "Payload")) + os.vcp(appdir, path.join(tmpdir, "Payload")) -- copy icon file to iTunesArtwork if iconfile then - os.cp(iconfile, path.join(tmpdir, "iTunesArtwork")) + os.vcp(iconfile, path.join(tmpdir, "iTunesArtwork")) end -- generate .ipa file |
