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

Commit e7e7bc6

Browse files
author
Andreia Gaita
authored
Merge pull request #980 from github-for-unity/changing-linux-common-settings-path
Changing linux common settings path
2 parents a93cce1 + 2ee5101 commit e7e7bc6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Have you read GitHub for Unity's Code of Conduct? By filing an Issue, you are ex
1010
- Include the log file in the PR.
1111
- On Windows, the extension log file is at `%LOCALAPPDATA%\GitHubUnity\github-unity.log`
1212
- On macOS, the extension log file is at `~/Library/Logs/GitHubUnity/github-unity.log`
13+
- On linux, the extension log file is at `~/.local/share/GitHubUnity/github-unity.log`
1314

1415
### Description
1516

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)