autobuild every minute

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-06-07 09:59:16 -07:00
parent dc1c865164
commit 0c4a45a3c8
1 changed files with 2 additions and 2 deletions

View File

@ -39,10 +39,10 @@ func main() {
for { for {
shell.Run("git checkout master") shell.Run("git checkout master")
shell.Run("git pull --tags") shell.Run("git pull --tags")
// shell.Run("go get -v -u -t") shell.Run("go get -v -u -t")
findtags() findtags()
time.Sleep(time.Second * 5) time.Sleep(time.Second * 60)
} }
} }