4 lines
160 B
Bash
Raw Normal View History

2017-06-16 15:38:10 +02:00
#!/bin/sh
2018-04-26 03:06:47 +02:00
MYDIR="$(dirname "$(readlink -f "$0")")"
2017-06-16 15:38:10 +02:00
cd "$MYDIR"
2017-06-16 15:42:22 +02:00
for dir in ./*; do ([ -d "$dir" ] && cd "$dir" && echo "Building patches/$dir" && go build); done