Skip to content

Commit

Permalink
path changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilLord666 committed Mar 5, 2024
1 parent 3a2a1e2 commit 1f23111
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public DeviceConfigurationManager(string configFile)
{
if (OperatingSystem.IsLinux())
{
string deviceConfigFile = Path.Combine(Environment.SpecialFolder.Personal.ToString(), configFile);
string deviceConfigFile = Path.Combine(Environment.SpecialFolder.UserProfile.ToString(), configFile);
if (!File.Exists(deviceConfigFile))
File.Create(deviceConfigFile).Dispose();
_configFile = Path.GetFullPath(deviceConfigFile);
Expand Down

0 comments on commit 1f23111

Please sign in to comment.