add script/build

This commit is contained in:
risk danger olson 2013-09-27 08:39:30 -06:00 committed by Rick Olson
parent b71624983a
commit 4b9690c46e
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file

@ -0,0 +1 @@
bin/

8
script/build Executable file

@ -0,0 +1,8 @@
#!/bin/bash
script/fmt
for i in cmd/*.go ; do
base=${i##*/}
go build -o bin/${base%.go} $i
done