(selected []string)
| 223 | } |
| 224 | |
| 225 | func createSelectedConfigs(selected []string) { |
| 226 | if contains(selected, "project") { |
| 227 | createProjectConfig() |
| 228 | } |
| 229 | if contains(selected, "global") { |
| 230 | createGlobalConfig() |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | func createProjectConfig() { |
| 235 | path := filepath.Join(".", PROJECT_CONFIG_FILE) |
no test coverage detected