summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/OsInfo.scala
blob: 3b5ad20864f46e7fb17a8d21569c58d232b39279 (plain)
1
2
3
4
5
6
7
8
package TeXLive

object OsInfo {
  val OS = System.getProperty("os.name")
  def isWindows: Boolean = {
    OS.startsWith("Windows")
  }
}