pygradle
pygradle copied to clipboard
pass pexOptions to plugin
Hi ! How can I pass pexOptions to the last version of plugin? In version 0.9.11 I used to buildPex.pexOptions = ["--entry=tax.main"], but now realBuildPex.pexOptions doesn't work.
After researching the plugin code, my solution is next code :)
afterEvaluate {
realBuildPex.setPexOptions(["--entry=tax.main"])
}