mirror of https://github.com/sbt/sbt.git
Merge pull request #6168 from eatkins/ipcsocket-upgrade
Update ipcsocket
This commit is contained in:
commit
d46d5dfff5
|
|
@ -71,7 +71,8 @@ private[sbt] object Server {
|
|||
)
|
||||
)
|
||||
case ConnectionType.Local =>
|
||||
val maxSocketLength = new UnixDomainSocketLibrary.SockaddrUn().sunPath.length - 1
|
||||
val maxSocketLength =
|
||||
UnixDomainSocketLibraryProvider.maxSocketLength(connection.useJni) - 1
|
||||
val path = socketfile.getAbsolutePath
|
||||
if (path.length > maxSocketLength)
|
||||
sys.error(
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ object Dependencies {
|
|||
val launcherInterface = "org.scala-sbt" % "launcher-interface" % launcherVersion
|
||||
val rawLauncher = "org.scala-sbt" % "launcher" % launcherVersion
|
||||
val testInterface = "org.scala-sbt" % "test-interface" % "1.0"
|
||||
val ipcSocket = "org.scala-sbt.ipcsocket" % "ipcsocket" % "1.1.0"
|
||||
val ipcSocket = "org.scala-sbt.ipcsocket" % "ipcsocket" % "1.3.0"
|
||||
|
||||
private val compilerInterface = "org.scala-sbt" % "compiler-interface" % zincVersion
|
||||
private val compilerClasspath = "org.scala-sbt" %% "zinc-classpath" % zincVersion
|
||||
|
|
|
|||
Loading…
Reference in New Issue