Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 1a746e0

Browse files
Changing the path used shared settings to something located in the home directory for linux users
1 parent a93cce1 commit 1a746e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Platform/DefaultEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public DefaultEnvironment()
3333
else
3434
{
3535
localAppData = GetSpecialFolder(Environment.SpecialFolder.LocalApplicationData).ToNPath();
36-
commonAppData = "/usr/local/share/".ToNPath();
36+
commonAppData = GetSpecialFolder(Environment.SpecialFolder.ApplicationData).ToNPath();
3737
}
3838

3939
UserCachePath = localAppData.Combine(ApplicationInfo.ApplicationName);

0 commit comments

Comments
 (0)