go get -u -v -d -xd

This commit is contained in:
Howl 2016-04-27 20:17:59 +02:00
parent 3782ed3c7c
commit b8c013c0ad
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func MetaUpdateGET(md common.MethodData) common.CodeMessager {
// go get
// -u: update all dependencies
// -d: stop after downloading deps
if !execCommand("go", "get", "-u", "-d") {
if !execCommand("go", "get", "-u", "-d", "-v") {
return
}
if !execCommand("go", "build", "-o", "-v", "api") {