src/setup-bazelisk/src.main.kts [173:184]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - enum class OS(val value: String) { Windows("win"), Linux("linux"), Mac("darwin"); override fun toString() = value companion object { fun detect(): OS = when { SystemUtils.IS_OS_WINDOWS -> Windows SystemUtils.IS_OS_LINUX -> Linux SystemUtils.IS_OS_MAC -> Mac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/setup-node/src.main.kts [178:189]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - enum class OS(val value: String) { Windows("win"), Linux("linux"), Mac("darwin"); override fun toString() = value companion object { fun detect(): OS = when { SystemUtils.IS_OS_WINDOWS -> Windows SystemUtils.IS_OS_LINUX -> Linux SystemUtils.IS_OS_MAC -> Mac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -