6 lines
191 B
Bash
Executable File
6 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
lsc -bc --no-header -o static/ web-src/script.ls || exit 1
|
|
npx sass web-src/style.scss static/style.css || exit 2
|
|
rustfmt src/*.rs || exit 3
|
|
cargo $(basename $0) "${@:1}"
|