選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bootstrap.sh 261B

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