mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 08:30:55 +11:00
faa2576f83
Verifying that forth.bin is stable is enough. Also, fix shebang.
15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
git submodule init
|
|
git submodule update
|
|
git clean -fxd
|
|
|
|
make -C emul
|
|
make -C tests
|
|
|
|
# verify that forth.bin is stable
|
|
cp emul/forth.bin ref.bin
|
|
make -C emul updatebootstrap
|
|
cmp emul/forth.bin ref.bin
|
|
rm ref.bin
|