| 12345678910111213141516171819 |
- package shell
- import (
- "os"
- "runtime"
- "strconv"
- )
- var useGoCoreUtils bool
- func init() {
- // If CRUSH_CORE_UTILS is set to either true or false, respect that.
- // By default, enable on Windows only.
- if v, err := strconv.ParseBool(os.Getenv("CRUSH_CORE_UTILS")); err == nil {
- useGoCoreUtils = v
- } else {
- useGoCoreUtils = runtime.GOOS == "windows"
- }
- }
|