File tree 2 files changed +5
-3
lines changed
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
32
32
33
33
The next step is to copy the zip content to one of the following locations, depending on your OS:
34
34
35
- * Windows: ` %LocalAppData%/JetBrains/Toolbox/cache/ plugins/com.coder.toolbox `
35
+ * Windows: ` %LocalAppData%/JetBrains/Toolbox/plugins/com.coder.toolbox `
36
36
* macOS: ` ~/Library/Caches/JetBrains/Toolbox/plugins/com.coder.toolbox `
37
37
* Linux: ` ~/.local/share/JetBrains/Toolbox/plugins/com.coder.toolbox `
38
38
Original file line number Diff line number Diff line change @@ -191,8 +191,10 @@ private fun getPluginInstallDir(): Path {
191
191
} / " JetBrains" / " Toolbox"
192
192
193
193
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
+
196
198
else -> error(" Unknown os" )
197
199
} / " plugins"
198
200
You can’t perform that action at this time.
0 commit comments