fix: handle empty aclPolicy for integration tests

This commit is contained in:
Adrien Raffin-Caboisse 2022-05-04 22:56:55 +02:00
parent 68417cc888
commit dc8c20e002
No known key found for this signature in database
GPG key ID: 7FB60532DEBEAD6A
4 changed files with 31 additions and 9 deletions

View file

@ -68,7 +68,8 @@ func init() {
if err != nil {
log.Fatalf(err.Error())
}
tagCmd.Flags().StringSliceP("tags", "t", []string{}, "List of tags to add to the node")
tagCmd.Flags().
StringSliceP("tags", "t", []string{}, "List of tags to add to the node")
nodeCmd.AddCommand(tagCmd)
}