12 lines
124 B
Bash
12 lines
124 B
Bash
#!/bin/sh
|
|
|
|
while true
|
|
do
|
|
git pull
|
|
cd build
|
|
qmake ../SparrowBot.pro
|
|
make release
|
|
cd release
|
|
./SparrowBot
|
|
cd ../..
|
|
done |