Radeity commented on PR #13930:
URL:
https://github.com/apache/dolphinscheduler/pull/13930#issuecomment-1512370789
> For user command `perl -Mbignum=bpi -wle 'print bpi(2000)'` what will be
actually executed in the pod? It seems that it will be `perl -Mbignum=bpi -wle
print bpi(2000)` in this PR? I'm not sure if I understand correctly
The actual command is `perl -Mbignum=bpi -wle "print bpi(2000)"`, if we
don't remove quotes, the command will be `perl -Mbignum=bpi -wle '"print
bpi(2000)"'` and cause error: `Useless use of a constant ("print bpi(2000)") in
void context at -e line 1.`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]