Since we want two newlines being printed here, let's use fmt.Printf so the compiler doesn't complain abpout 'redundant newlines'

This commit is contained in:
Zack Mullaly 2018-02-28 09:23:00 -05:00
Родитель 7c929b22fa
Коммит 9947461750
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -320,10 +320,10 @@ func investigatorCreator(cli client.Client) (err error) {
}
switch strings.ToLower(respv) {
case "yes":
fmt.Println("Investigator will have manifest management permissions")
fmt.Printf("Investigator will have manifest management permissions\n\n")
pset.ManifestSet()
case "no":
fmt.Println("Investigator will not have manifest management permissions")
fmt.Printf("Investigator will not have manifest management permissions\n\n")
default:
panic("must specify yes or no")
}