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

1234567891011121314
  1. #!/bin/bash
  2. set -v
  3. if ! type wasm-pack > /dev/null; then
  4. echo "wasm-pack is not installed"
  5. cargo install wasm-pack
  6. fi
  7. if ! type basic-http-server > /dev/null; then
  8. echo "basic-http-server is not installed"
  9. cargo install basic-http-server
  10. fi