SparrowBot/autolaunch.sh
2015-05-21 18:49:30 +02:00

12 lines
124 B
Bash

#!/bin/sh
while true
do
git pull
cd build
qmake ../SparrowBot.pro
make release
cd release
./SparrowBot
cd ../..
done