Do not include directories in tar gz (WI-9979)

This commit is contained in:
Rustam Vishnyakov
2012-05-03 15:07:38 +04:00
parent ad138cec3e
commit 299ec4c064
+2
View File
@@ -599,6 +599,7 @@ binding.setVariable("buildTarGz", { String tarRoot, String tarPath, List paths -
tarfileset(dir: it, prefix: tarRoot) {
exclude(name: "bin/*.sh")
exclude(name: "bin/fsnotifier*")
type(type: "file")
}
}
@@ -606,6 +607,7 @@ binding.setVariable("buildTarGz", { String tarRoot, String tarPath, List paths -
tarfileset(dir: it, filemode: "755", prefix: tarRoot) {
include(name: "bin/*.sh")
include(name: "bin/fsnotifier*")
type(type: "file")
}
}
}