mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix paths.
This commit is contained in:
parent
4905afffbb
commit
62c11cbdfe
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class KobaltClient : Runnable {
|
||||||
val client = OkHttpClient()
|
val client = OkHttpClient()
|
||||||
val port = KobaltServer.port ?: 1240
|
val port = KobaltServer.port ?: 1240
|
||||||
val url = "ws://localhost:$port/v1/getDependencyGraph"
|
val url = "ws://localhost:$port/v1/getDependencyGraph"
|
||||||
val buildFile = homeDir("kotlin/klaxon/kobalt/src/Build.kt")
|
val buildFile = homeDir("kotlin/kobalt/kobalt/src/Build.kt").replace("\\", "/")
|
||||||
val request = Request.Builder()
|
val request = Request.Builder()
|
||||||
// .url("ws://echo.websocket.org")
|
// .url("ws://echo.websocket.org")
|
||||||
.url("$url?buildFile=$buildFile")
|
.url("$url?buildFile=$buildFile")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue