mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-23 19:21:53 +03:00
25 lines
506 B
Bash
Executable File
25 lines
506 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
readonly clean=${clean:?"true or false: when true, xcodebuild clean will be performed"}
|
|
|
|
main() {
|
|
if [[ "${clean}" == true ]]; then
|
|
local -r cmd="clean build"
|
|
else
|
|
local -r cmd="build"
|
|
fi
|
|
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/.." > /dev/null
|
|
xcodebuild \
|
|
-workspace VimR.xcworkspace \
|
|
-derivedDataPath ./build \
|
|
-configuration Release \
|
|
-scheme VimR \
|
|
-xcconfig ./VimR/Dev.xcconfig \
|
|
${cmd}
|
|
popd >/dev/null
|
|
}
|
|
|
|
main
|