10 lines
136 B
Bash
Executable file
10 lines
136 B
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
cargo check --all-features
|
|
cargo clippy
|
|
|
|
# ./build_wasm.sh
|
|
# open "docs/index.html"
|
|
|
|
cargo run --bin example_glium
|