All Downloads are FREE. Search and download functionalities are using the official Maven repository.

coursier.launcher.internal.Windows.scala Maven / Gradle / Ivy

The newest version!
package coursier.launcher.internal

import java.io.File

object Windows {

  def pathExtensions: Seq[String] =
    pathExtensions0

  private lazy val pathExtensions0 =
    Option(System.getenv("pathext"))
      .toSeq
      .flatMap(_.split(File.pathSeparator).toSeq)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy