Remove newline after heading in .sample-env

This commit is contained in:
Maidul Islam
2023-02-10 12:24:29 -08:00
parent a60774a3f4
commit 4c56bca4e7

View File

@@ -512,7 +512,7 @@ func generateExampleEnv(cmd *cobra.Command, args []string) {
if len(listOfTagNames) == 0 {
fmt.Printf("\n%s \n", strings.Join(listOfKeyValue, "\n \n"))
} else {
fmt.Printf("\n\n\n%s\n \n%s \n", heading, strings.Join(listOfKeyValue, "\n \n"))
fmt.Printf("\n\n\n%s \n%s \n", heading, strings.Join(listOfKeyValue, "\n \n"))
}
}
}