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

Changing linux common settings path #980

Merged
merged 2 commits into from
Dec 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Have you read GitHub for Unity's Code of Conduct? By filing an Issue, you are ex
- Include the log file in the PR.
- On Windows, the extension log file is at `%LOCALAPPDATA%\GitHubUnity\github-unity.log`
- On macOS, the extension log file is at `~/Library/Logs/GitHubUnity/github-unity.log`
- On linux, the extension log file is at `~/.local/share/GitHubUnity/github-unity.log`

### Description

Expand Down
2 changes: 1 addition & 1 deletion src/GitHub.Api/Platform/DefaultEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DefaultEnvironment()
else
{
localAppData = GetSpecialFolder(Environment.SpecialFolder.LocalApplicationData).ToNPath();
commonAppData = "/usr/local/share/".ToNPath();
commonAppData = GetSpecialFolder(Environment.SpecialFolder.ApplicationData).ToNPath();
}

UserCachePath = localAppData.Combine(ApplicationInfo.ApplicationName);
Expand Down