Changed backend node API to account for default and overrides for UI

This commit is contained in:
Gregory Kurtzer
2020-11-23 23:11:20 -08:00
parent c8ed66a6dc
commit e5e23b5868
36 changed files with 569 additions and 478 deletions

View File

@@ -27,7 +27,7 @@ func CobraRunE(cmd *cobra.Command, args []string) error {
}
for _, node := range nodes {
set[node.KernelVersion] ++
set[node.KernelVersion.String()] ++
}
} else if BuildAll == true {
@@ -39,7 +39,7 @@ func CobraRunE(cmd *cobra.Command, args []string) error {
}
for _, node := range nodes {
set[node.KernelVersion] ++
set[node.KernelVersion.String()] ++
}
} else if len(args) == 1 {