Same deal for the stack VM

This commit is contained in:
Tony Garnock-Jones 2022-01-06 12:16:12 +01:00
parent 284a3ade0c
commit 9f3dcb1be9
1 changed files with 11 additions and 3 deletions

View File

@ -35,8 +35,16 @@ build() {
;; ;;
esac esac
cd squeak.stack.spur/build cd squeak.stack.spur/build
echo y | ./mvm echo Running initial build
echo n | ./mvm (echo y | ./mvm > log.initial-build 2>&1) || true
nn=0
echo Checking to see if ./squeak exists and is executable...
while [ ! -x ./squeak ]
do
echo Running subsequent build $nn
echo n | ./mvm > log.$nn 2>&1
nn=$((nn+1))
done
} }
package() { package() {
@ -63,5 +71,5 @@ package() {
} }
sha512sums=" sha512sums="
3ea16d90bc64b53b1e865b7e7e84457d564b60de2b8a2179c52528c1c1a574177a4aa933b634de5dd8d82557ea1bd7e453a119dfabdad133dc47eca7c8ca6aa8 squeak-vm-202107301330.tar.gz 3ea16d90bc64b53b1e865b7e7e84457d564b60de2b8a2179c52528c1c1a574177a4aa933b634de5dd8d82557ea1bd7e453a119dfabdad133dc47eca7c8ca6aa8 squeak-stack-vm-202107301330.tar.gz
" "