Updated makefiles

This commit is contained in:
2017-07-17 22:50:14 +02:00
parent 808a29756d
commit 7add32b4a7
3 changed files with 10 additions and 2 deletions

4
bots/build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
MYDIR="$(dirname "$(realpath "$0")")"
cd "$MYDIR"
for dir in ./*; do ([ -d "$dir" ] && cd "$dir" && echo "Building bots/$dir" && go build); done