12 lines
277 B
Bash
Executable File
12 lines
277 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# getting the script directory: https://stackoverflow.com/a/246128
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
pushd "${DIR}/Generator"
|
|
rm -rf .build
|
|
env -i PATH="$PATH" HOME="$HOME" xcrun swift build --configuration release "$@"
|
|
popd
|