21 lines
256 B
Bash
Executable File
21 lines
256 B
Bash
Executable File
#!/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
|
|
|