Sometimes it is necessary to set specific environment variables when starting processes with ProcessPanel.
I modified ProcessPanelWorker.java to accept <env> elements just as in the following example:
<processing>
<job name="Performing some post install task requiring a specific environment variable">
<os family="windows" />
<executeForPack name="Server files" />
<executefile name="$INSTALL_PATH\bin\postinstall.exe">
<arg>foo</arg>
<arg>bar</arg>
<env>MY_PRODUCT_HOME=$INSTALL_PATH</env>
</executefile>
</job>
</processing>
I have yet to review the proposed solution, but meanwhile, could you please attach a patch rather than a whole while? Patches are much more convenient to handle
Thanks a lot