-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: 0.3
-
Fix Version/s: 1.1
-
Component/s: pge wrapper framework
-
Labels:None
I want to do this in bash:
if [[ $x = 'hello' ]]; then echo "goodbye" fi
But the PGE script ends up like this:
if null]; then echo "goodbye" fi
Same thing happens if I do the following:
<cmd> if [test_expression]; then echo "goodbye" fi </cmd> ... <metadata key="test_expression" val="[[ $x = 'hello' ]$#93;"/>
Or variations, such as:
<metadata key="test_expression" val="[[ $x = 'hello' ]]"/> <metadata key="open" val="[["/> <metadata key="test" val="$x = 'hello'"/> <metadata key="close" val="]]"/>