We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25b622 commit 6eb2900Copy full SHA for 6eb2900
src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
@@ -381,7 +381,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
381
OS.WINDOWS -> Paths.get(System.getenv("APPDATA"), "coderv2")
382
OS.MAC -> Paths.get(System.getenv("HOME"), "Library/Application Support/coderv2")
383
else -> {
384
- dir = System.getenv("XDG_CACHE_HOME")
+ dir = System.getenv("XDG_CONFIG_HOME")
385
if (!dir.isNullOrBlank()) {
386
return Paths.get(dir, "coderv2")
387
}
0 commit comments