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

packager.windows.WindowsUtils.scala Maven / Gradle / Ivy

The newest version!
package packager.windows

case object WindowsUtils {

  def convertLicenseToRtfFormat(licensePath: os.ReadablePath): String = {
    val license = os.read(licensePath)
    val rtfLicense =
      s"""{\\rtf1\\ansi{\\fonttbl{\\f0\\fcharset0 Times New Roman;}}
         |\\
         |${license.replaceAll("\n", "\\\\\n")}
         |}
         |""".stripMargin
    rtfLicense
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy