From 5f97315d496201f24744a836475fa88d30f8f209 Mon Sep 17 00:00:00 2001 From: Howl Date: Sat, 14 May 2016 20:31:28 +0200 Subject: [PATCH] i memi --- app/v1/meta.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/v1/meta.go b/app/v1/meta.go index 40139e6..8976d61 100644 --- a/app/v1/meta.go +++ b/app/v1/meta.go @@ -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", "-v") { + if !execCommand("go", "get", "-v", "-u", "-d") { return } if !execCommand("go", "build", "-v", "-o", "api") { @@ -117,7 +117,6 @@ func execCommand(command string, args ...string) bool { // Bob. We got a problem. if len(data) != 0 { log.Println(string(data)) - return false } io.Copy(os.Stdout, stdout) cmd.Wait()