11 lines
315 B
Bash
Executable File
11 lines
315 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
set -euxo pipefail
|
|
TARGET=target/x86_64-apple-darwin/release/rpn_rs
|
|
cargo build --release --target x86_64-apple-darwin
|
|
du -sh "./${TARGET}"
|
|
strip "./${TARGET}"
|
|
du -sh "./${TARGET}"
|
|
gzip -f "./${TARGET}"
|
|
du -sh "./${TARGET}.gz"
|
|
mv "./${TARGET}.gz" "./target/release/rpn_rs-x86_64-apple-darwin.gz"
|