(artifacts string)
| 44 | ) |
| 45 | |
| 46 | func csvToQualifiedActions(artifacts string) []string { |
| 47 | var res []string |
| 48 | actions := strings.Split(artifacts, ",") |
| 49 | for i := 0; i < len(actions); i++ { |
| 50 | res = append(res, getQualifiedName(actions[i], Properties.Namespace)) |
| 51 | } |
| 52 | |
| 53 | return res |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Processes command line to retrieve pairs of key-value pairs, where the value must be valid JSON. |
no test coverage detected