Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
0.3
-
None
Description
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="]]"/>