Merge pull request #3237 from dokku/josegonzalez-patch-1

feat: support --quiet header when showing all environment variables
This commit is contained in:
Jose Diaz-Gonzalez
2018-07-26 14:41:56 -04:00
committed by GitHub

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))
}
}