File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ or from [Coder's Github Release page](https://github.com/coder/coder-jetbrains-t
3232
3333The next step is to copy the zip content to one of the following locations, depending on your OS:
3434
35- * Windows: ` %LocalAppData%/JetBrains/Toolbox/cache/ plugins/com.coder.toolbox `
35+ * Windows: ` %LocalAppData%/JetBrains/Toolbox/plugins/com.coder.toolbox `
3636* macOS: ` ~/Library/Caches/JetBrains/Toolbox/plugins/com.coder.toolbox `
3737* Linux: ` ~/.local/share/JetBrains/Toolbox/plugins/com.coder.toolbox `
3838
Original file line number Diff line number Diff line change @@ -191,8 +191,10 @@ private fun getPluginInstallDir(): Path {
191191 } / " JetBrains" / " Toolbox"
192192
193193 val pluginsDir = when {
194- SystemInfoRt .isWindows -> toolboxCachesDir / " cache"
195- SystemInfoRt .isLinux || SystemInfoRt .isMac -> toolboxCachesDir
194+ SystemInfoRt .isWindows ||
195+ SystemInfoRt .isLinux ||
196+ SystemInfoRt .isMac -> toolboxCachesDir
197+
196198 else -> error(" Unknown os" )
197199 } / " plugins"
198200
You can’t perform that action at this time.
0 commit comments