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.

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