From 334a52e789681c090af7edd2c73ac46fbb5f872f Mon Sep 17 00:00:00 2001 From: Dalton Date: Sat, 10 May 2025 11:56:31 +0800 Subject: [PATCH] Fix linux path --- Editor/ProcessRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/ProcessRunner.cs b/Editor/ProcessRunner.cs index 95d5edf..e425378 100644 --- a/Editor/ProcessRunner.cs +++ b/Editor/ProcessRunner.cs @@ -130,7 +130,7 @@ namespace Microsoft.Unity.VisualStudio.Editor #if UNITY_EDITOR_OSX cursorStoragePath = Path.Combine(userProfile, "Library", "Application Support", "cursor", "User", "workspaceStorage"); #elif UNITY_EDITOR_LINUX - cursorStoragePath = Path.Combine(userProfile, ".config", "cursor", "User", "workspaceStorage"); + cursorStoragePath = Path.Combine(userProfile, ".config", "Cursor", "User", "workspaceStorage"); #else cursorStoragePath = Path.Combine(userProfile, "AppData", "Roaming", "cursor", "User", "workspaceStorage"); #endif