InstructionApps returns the list of app names that support instructions (those with at least one install path defined).
()
| 370 | // InstructionApps returns the list of app names that support instructions |
| 371 | // (those with at least one install path defined). |
| 372 | func InstructionApps() []string { |
| 373 | out := make([]string, 0, len(instructionApps)) |
| 374 | for a := range instructionApps { |
| 375 | out = append(out, a) |
| 376 | } |
| 377 | sortStrings(out) |
| 378 | return out |
| 379 | } |
| 380 | |
| 381 | // InstructionAppLevels returns the supported install levels for an app. |
| 382 | func InstructionAppLevels(app string) []InstallLevel { |