Description
For shell action, the env-var's value is truncated by =. for example, the shell action in
workflow.xml:
<shell xmlns="uri:oozie:shell-action:0.1">
... ...
<exec>${SCRIPT}</exec>
<env-var>myVar="v=123;t=456;s=abc--"</env-var>
<file>${SCRIPT}#${SCRIPT}</file>
<capture-output/>
then the ${myVar} becomes:
myVar="v
expect it to be: ${myVar} equals v=123;t=456;s=abc--