21 lines
256 B
Bash
21 lines
256 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
## Run this build script at root
|
||
|
|
## Ex)
|
||
|
|
## $ ./scripts/build.sh
|
||
|
|
##
|
||
|
|
|
||
|
|
CONSOLE_APP="KissMeConsole"
|
||
|
|
|
||
|
|
|
||
|
|
echo "build console bin/${CONSOLE_APP}"
|
||
|
|
|
||
|
|
cd ${CONSOLE_APP}
|
||
|
|
|
||
|
|
rm -rf .build
|
||
|
|
|
||
|
|
swift build -c release
|
||
|
|
|
||
|
|
cp ./.build/release/${CONSOLE_APP} ../bin
|
||
|
|
|