On 29/05/19 2:25 AM, Kruck, Bastian wrote:
> it has been a while since I last setup VMMaker in an image, so it seems
> I need a hint here:
Basti,
The error is because the latest release does not contain macos64x64. I
don't know why this file is missing. The last one for macos64x64 is:
````
$ curl -s -L
https://dl.bintray.com/opensmalltalk/vm/ | awk -F\" '$4 ~
/:squeak.cog.spur_macos64x64/ {latest=substr($4,2)}END{print latest}'
squeak.cog.spur_macos64x64_201903251926.dmg
````
You can workaround by downloading it directly from:
https://dl.bintray.com/opensmalltalk/vm/squeak.cog.spur_macos64x64_201903251926.dmgextract the VM app and give its path directly as a argument
````
$ ./buildspurtrunkvmmaker64image.sh -vm Squeak64.201903251926.app
````
or you could override the LATEST_RELEASE variable temporarily in
getGoodSpurVM64.sh and then rerun your script:
````
Darwin)
+ LATEST_RELEASE=201903251926
VOLUME="squeak.cog.spur_macos64x64_$LATESTRELEASE"
````
HTH .. Subbu