Updated NotVendored flag
Updated travis matrix
Updated build log
This commit is contained in:
notzippy@gmail.com
2020-04-29 22:01:28 -07:00
parent 36bd6b944a
commit 9d3a554bec
3 changed files with 11 additions and 21 deletions

View File

@@ -149,7 +149,7 @@ func Build(c *model.CommandConfig, paths *model.RevelContainer) (_ *App, err err
goModCmd := exec.Command(goPath, append([]string{"mod"}, strings.Split(gomod, " ")...)...)
utils.CmdInit(goModCmd, !c.Vendored, c.AppPath)
output, err := goModCmd.CombinedOutput()
utils.Logger.Infof("Gomod applied ", "output", string(output))
utils.Logger.Info("Gomod applied ", "output", string(output))
// If the build succeeded, we're done.
if err != nil {