mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 15:30:55 +11:00
532bcc7e78
I wanted to make CVM's forth use the Grid subsystem, but doing so would break the stage binary. Hence, this split.
12 lines
169 B
Bash
Executable File
12 lines
169 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
git clean -fxd
|
|
|
|
make -C tests
|
|
|
|
# verify that stage.bin is stable
|
|
cp cvm/stage.bin ref.bin
|
|
make -C cvm updatebootstrap
|
|
cmp cvm/stage.bin ref.bin
|
|
rm ref.bin
|