feat: support --quiet header when showing all environment variables

Closes #3229
This commit is contained in:
Jose Diaz-Gonzalez
2018-07-25 23:51:55 -04:00
committed by GitHub
parent e8265ac642
commit b75547cff8

View File

@@ -25,7 +25,7 @@ func CommandShow(args []string, global bool, shell bool, export bool, merged boo
if appName != "" {
contextName = appName
}
common.LogInfo2(contextName + " env vars")
common.LogInfo2Quiet(contextName + " env vars")
fmt.Println(env.Export(ExportFormatPretty))
}
}