You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by "Chris A. Mattmann (JIRA)" <ji...@apache.org> on 2014/02/07 23:53:20 UTC

[jira] [Assigned] (OODT-441) PGE task does dynamic replacement on bash conditionals

     [ https://issues.apache.org/jira/browse/OODT-441?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris A. Mattmann reassigned OODT-441:
--------------------------------------

    Assignee: Chris A. Mattmann

> PGE task does dynamic replacement on bash conditionals
> ------------------------------------------------------
>
>                 Key: OODT-441
>                 URL: https://issues.apache.org/jira/browse/OODT-441
>             Project: OODT
>          Issue Type: Bug
>          Components: pge wrapper framework
>    Affects Versions: 0.3
>            Reporter: Ricky Nguyen
>            Assignee: Chris A. Mattmann
>             Fix For: 0.7
>
>
> I want to do this in bash:
> {code}
> if [[ $x = 'hello' ]]; then
>   echo "goodbye"
> fi
> {code}
> But the PGE script ends up like this:
> {code}
> if null]; then
>   echo "goodbye"
> fi
> {code}
> Same thing happens if I do the following:
> {code}
> <cmd>
>   if [test_expression]; then
>     echo "goodbye"
>   fi
> </cmd>
> ...
> <metadata key="test_expression" val="&#91;&#91; $x = 'hello' &#93;$#93;"/>
> {code}
> Or variations, such as:
> {code}
> <metadata key="test_expression" val="[[ $x = 'hello' ]]"/>
> <metadata key="open" val="&#91;&#91;"/>
> <metadata key="test" val="$x = 'hello'"/>
> <metadata key="close" val="&#93;&#93;"/>
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)