On Friday 22 June 2001 14:07, you wrote:
[...]
> 'postInstall' => <<'EOF'
> echo "This is a test"
> EOF
> };
> ^@
>
Try removing the leading spaces from the two lines following the
'postInstall'. The EOF must be at the beginning of a line.
'postInstall' => <<'EOF'
echo "This is a test"
EOF
};
Regards
Dave
