4 lines
160 B
Bash
Raw Normal View History

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