Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
209B

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