mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 14:00:01 -04:00
13 lines
201 B
Bash
Executable file
13 lines
201 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
export RELEASE="${RELEASE:-1}"
|
|
|
|
rm -r full minimal || true
|
|
|
|
cargo clean
|
|
bash build.sh
|
|
mv pkg full
|
|
MINIMAL=1 bash build.sh
|
|
mv pkg minimal
|