Native: don't pack Xcode license into non-macOS bundles

This commit is contained in:
Svyatoslav Scherbina
2021-12-01 14:49:13 +03:00
committed by Space
parent 0a6c4c985c
commit 71deeab57c
+3
View File
@@ -555,6 +555,9 @@ task bundlePrebuilt(type: (isWindows()) ? Zip : Tar) {
}
from(project.projectDir) {
include 'licenses/**'
if (!isMac()) {
exclude '**/xcode_license.pdf'
}
into archiveBaseName
}
}