mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 04:08:05 +11:00
14 lines
209 B
Bash
Executable File
14 lines
209 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
git submodule init
|
|
git submodule update
|
|
git clean -fxd
|
|
|
|
make -C tests
|
|
|
|
# verify that forth.bin is stable
|
|
cp cvm/forth.bin ref.bin
|
|
make -C cvm updatebootstrap
|
|
cmp cvm/forth.bin ref.bin
|
|
rm ref.bin
|