fix: get app new working again

This commit is contained in:
2021-09-07 08:12:37 +02:00
parent 87f0985ebb
commit b477bf8ece
3 changed files with 24 additions and 20 deletions

View File

@ -65,6 +65,14 @@ var appSecretGenerateCommand = &cli.Command{
}
}
tableCol := []string{"Name", "Value"}
table := abraFormatter.CreateTable(tableCol)
for name, val := range secretVals {
table.Append([]string{name, val})
}
table.Render()
logrus.Warn("Warning, these secrets will not be shown again, please take note of them *now*")
return nil
},
}