forked from spacebar/rust-nex
it was a hard 3 minutes of thinking but i realized we run containers anyways so??? it was kinda useless
13 lines
No EOL
233 B
Shell
Executable file
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" |