mirror of https://github.com/sbt/sbt.git
Fix default path
This commit is contained in:
parent
b0a20eff81
commit
da1dae49dd
|
|
@ -27,7 +27,7 @@ case class Bootstrap(
|
||||||
if (options.downloadDir.isEmpty)
|
if (options.downloadDir.isEmpty)
|
||||||
helper.baseDependencies.headOption match {
|
helper.baseDependencies.headOption match {
|
||||||
case Some(dep) =>
|
case Some(dep) =>
|
||||||
s"\\$$HOME/.coursier/bootstrap/${dep.module.organization}/${dep.module.name}"
|
s"$${user.home}/.coursier/bootstrap/${dep.module.organization}/${dep.module.name}"
|
||||||
case None =>
|
case None =>
|
||||||
Console.err.println("Error: no dependencies specified.")
|
Console.err.println("Error: no dependencies specified.")
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue