Skip to content

Commit

Permalink
Use absolute path for explorer.exe
Browse files Browse the repository at this point in the history
frick me

(cherry picked from commit 0284eb0)
  • Loading branch information
PJB3005 committed Aug 11, 2024
1 parent eeef45f commit 3a4697d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Robust.Shared/ContentPack/WritableDirProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void OpenOsWindow(ResPath path)
{
Process.Start(new ProcessStartInfo
{
FileName = "explorer.exe",
FileName = $"{Environment.GetEnvironmentVariable("SystemRoot")}\\explorer.exe",
Arguments = ".",
WorkingDirectory = fullPath,
});
Expand Down

0 comments on commit 3a4697d

Please sign in to comment.