Hello,

I found my Jenkins jobs with scripts like below fails to start headless pharo process these couple of nights.
---
wget --quiet -O - get.pharo.org/50+vm | bash
./pharo Pharo.image save Pharo5.0 --delete-old
---

The problem is in the last line of the downloaded pharo script;

LD_LIBRARY_PATH=$DIR/pharo-vm:$LD_LIBRARY_PATH $DIR/pharo-vm/pharo --nodisplay�� "$@"

should be quoted lilke
LD_LIBRARY_PATH="$DIR/pharo-vm:$LD_LIBRARY_PATH" "$DIR/pharo-vm/pharo" --nodisplay����"$@"

It seems the script for Pharo6 also has the same issue.

Best Regards,
---
tomo