forked from toolshed/abra
fix: get app new working again
This commit is contained in:
@ -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
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user