March 17, 2017
3:35 a.m.
Thanks for the report Tomo. cheers -ben On Fri, Mar 17, 2017 at 10:22 AM, Tomohiro Oda <tomohiro.tomo.oda@gmail.com> wrote:
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