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

coursier.cli.install.ShellUtil.scala Maven / Gradle / Ivy

There is a newer version: 2.1.13
Show newest version
package coursier.cli.install

object ShellUtil {

  def rcFileOpt: Option[String] =
    sys.env.get("SHELL").map(_.split('/').last).flatMap {
      case "zsh" => Some("~/.zshrc")
      case "bash" => Some("~/.bashrc")
      case _ => None
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy