(ss []string)
| 48 | } |
| 49 | |
| 50 | func joinAPPDStrings(ss []string) string { |
| 51 | result := "" |
| 52 | for i, s := range ss { |
| 53 | if i > 0 { |
| 54 | result += "," |
| 55 | } |
| 56 | result += s |
| 57 | } |
| 58 | return result |
| 59 | } |
| 60 | |
| 61 | // installAppDynamicsAgent creates javaagent.jar at the flat path under depsDir. |
| 62 | func installAppDynamicsAgent(depsDir string) { |