This commit is contained in:
Liang Ding 2014-09-05 11:42:45 +08:00
parent 533434fe43
commit e5af5494f4
1 changed files with 4 additions and 1 deletions

View File

@ -206,7 +206,10 @@ func BuildHandler(w http.ResponseWriter, r *http.Request) {
setCmdEnv(cmd, username)
cmd.Start()
out, _ := cmd.CombinedOutput()
if len(out) > 0 {
glog.Warning(string(out))
}
}()
}