Skip to content

Commit 08b44c9

Browse files
author
Marcelo Bukowski de Farias
committed
Fix pre-packaged agent binary name
1 parent 331d900 commit 08b44c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jb/src/main/kotlin/agent/AgentService.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ class AgentService(private val project: Project) : Disposable {
304304

305305
private fun getAgentResourcePath(): String {
306306
return when (platform) {
307-
Platform.LINUX -> "/agent/agent-linux-x64"
308-
Platform.MAC -> "/agent/agent-macos-x64"
309-
Platform.WIN64 -> "/agent/agent-win-x64.exe"
307+
Platform.LINUX -> "/agent/agent-linux"
308+
Platform.MAC -> "/agent/agent-macos"
309+
Platform.WIN64 -> "/agent/agent-win.exe"
310310
}
311311
}
312312

0 commit comments

Comments
 (0)