teacher-tools/build-api.sh

11 lines
169 B
Bash
Raw Permalink Normal View History

2024-12-30 16:55:30 +00:00
#!/usr/bin/env bash
set -e
set -o pipefail
echo "Building API"
cd api
dub clean
dub build --build=release --compiler=/opt/ldc2/ldc2-1.36.0-linux-x86_64/bin/ldc2
cd ..