Fixed a bug with profile list when kernelargs are set with 'var=val'

format. This also removed the unnecessary '--' for the source profile
since it's never used.
This commit is contained in:
Yong Qin
2024-03-05 09:58:20 -08:00
committed by Christian Goll
parent da34e3c51e
commit 0aca225ef7
2 changed files with 6 additions and 6 deletions

View File

@@ -26,9 +26,9 @@ func CobraRunE(vars *variables) func(cmd *cobra.Command, args []string) (err err
}
if len(profileInfo.Output) > 0 {
ph := helper.NewPrintHelper(strings.Split(profileInfo.Output[0], "="))
ph := helper.NewPrintHelper(strings.Split(profileInfo.Output[0], ":=:"))
for _, val := range profileInfo.Output[1:] {
ph.Append(strings.Split(val, "="))
ph.Append(strings.Split(val, ":=:"))
}
ph.Render()
}