19 lines
297 B
Bash
Executable File
19 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ $BUILD == dub ]]; then
|
|
dub build --build=release
|
|
|
|
mkdir bin
|
|
mv dfmt ./bin
|
|
elif [[ $DC == ldc2 ]]; then
|
|
git submodule update --init --recursive
|
|
make ldc -j2
|
|
else
|
|
git submodule update --init --recursive
|
|
make debug -j2
|
|
fi
|
|
|
|
cd tests && ./test.sh
|