6 lines
164 B
Bash
6 lines
164 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
cargo build --release
|
||
|
strip target/x86_64-unknown-linux-musl/release/amdfand
|
||
|
upx --best --lzma target/x86_64-unknown-linux-musl/release/amdfand
|