mirror of https://github.com/sbt/sbt.git
Merge pull request #4898 from eatkins/underscore
Use '_' instead of '$' in path names
This commit is contained in:
commit
e3e2f29bdd
|
|
@ -288,8 +288,8 @@ final class PartBuildUnit(
|
|||
object BuildStreams {
|
||||
type Streams = sbt.std.Streams[ScopedKey[_]]
|
||||
|
||||
final val GlobalPath = "$global"
|
||||
final val BuildUnitPath = "$build"
|
||||
final val GlobalPath = "_global"
|
||||
final val BuildUnitPath = "_build"
|
||||
final val StreamsDirectory = "streams"
|
||||
|
||||
def mkStreams(
|
||||
|
|
|
|||
Loading…
Reference in New Issue