()
| 10 | var useGoCoreUtils bool |
| 11 | |
| 12 | func init() { |
| 13 | // If TASK_CORE_UTILS is set to either true or false, respect that. |
| 14 | // By default, enable on Windows only. |
| 15 | if v, err := strconv.ParseBool(env.GetTaskEnv("CORE_UTILS")); err == nil { |
| 16 | useGoCoreUtils = v |
| 17 | } else { |
| 18 | useGoCoreUtils = runtime.GOOS == "windows" |
| 19 | } |
| 20 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…