Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
169B

  1. #!/bin/sh -e
  2. git clean -fxd
  3. make -C tests
  4. # verify that stage.bin is stable
  5. cp cvm/stage.bin ref.bin
  6. make -C cvm updatebootstrap
  7. cmp cvm/stage.bin ref.bin
  8. rm ref.bin