Files
crush/internal/shell/coreutils.go
Andrey Nering 569044c5a0 fix: only enable built-in core utils by default on windows
Or we risk making them failing on other platforms due to
incompatibilities.

Fixes #1341
2025-10-30 16:43:54 -03:00

20 lines
362 B
Go

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"
}
}