mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-13 06:20:02 -04:00
11 lines
181 B
Bash
Executable file
11 lines
181 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
rm -r full minimal || true
|
|
|
|
cargo clean
|
|
bash build.sh
|
|
mv pkg full
|
|
bash build.sh --no-default-features
|
|
mv pkg minimal
|