pygradle icon indicating copy to clipboard operation
pygradle copied to clipboard

pass pexOptions to plugin

Open shvilime opened this issue 4 years ago • 1 comments

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.

shvilime avatar Aug 28 '21 06:08 shvilime

After researching the plugin code, my solution is next code :)

afterEvaluate {
    realBuildPex.setPexOptions(["--entry=tax.main"])
}

shvilime avatar Aug 28 '21 07:08 shvilime