Removed build script

This commit is contained in:
Dominic Grimm 2022-01-10 17:53:51 +01:00
parent 92ee590d94
commit b5cfcf0555

View file

@ -1,14 +0,0 @@
#!/usr/bin/env sh
BASE_FLAGS="--production --static --verbose -s -p -t"
DEV_FLAGS="$BASE_FLAGS"
PROD_FLAGS="--release --no-debug $BASE_FLAGS"
echo "Building targets in '$1' mode..."
if [ "$1" = "development" ]; then
# shellcheck disable=SC2086
time shards build $DEV_FLAGS
else
# shellcheck disable=SC2086
time shards build $PROD_FLAGS
fi