mirror of https://github.com/sbt/sbt.git
Use real paths for zinc base path
The AppConfiguration.baseDirectory is dealiased during project loading. Not dealiasing the symlink here could cause a discrepancy between the `baseDirectory` key and the value of the base key in the root paths map.
This commit is contained in:
parent
e323f1f713
commit
63cd8f53c6
|
|
@ -191,7 +191,7 @@ object Defaults extends BuildCommon {
|
||||||
allowMachinePath :== true,
|
allowMachinePath :== true,
|
||||||
rootPaths := {
|
rootPaths := {
|
||||||
val app = appConfiguration.value
|
val app = appConfiguration.value
|
||||||
val base = app.baseDirectory
|
val base = app.baseDirectory.getCanonicalFile
|
||||||
val boot = app.provider.scalaProvider.launcher.bootDirectory
|
val boot = app.provider.scalaProvider.launcher.bootDirectory
|
||||||
val ih = app.provider.scalaProvider.launcher.ivyHome
|
val ih = app.provider.scalaProvider.launcher.ivyHome
|
||||||
val coursierCache = csrCacheDirectory.value
|
val coursierCache = csrCacheDirectory.value
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue