rust-nex/build-edition.sh
red binder f04e85d496 drop musl support
it was a hard 3 minutes of thinking but i realized we run containers anyways so??? it was kinda useless
2026-08-08 06:31:07 +02:00

13 lines
No EOL
233 B
Shell
Executable file

#!/usr/bin/env bash
set -euo pipefail
if [ -z ${EDITION+x} ]; then
EDITION=$1
fi
source ./buildscripts/common.sh
echo "Building $EDITION"
echo "FEATURES: $EDITION_FEATURES"
cargo build --release --features "$EDITION_FEATURES"