Compare commits

..

2 Commits

Author SHA1 Message Date
Pieter-Jan Briers
a7fa0cbb6c Version: 218.2.3 2024-08-11 19:54:47 +02:00
Pieter-Jan Briers
8feebd2a87 Use absolute path for explorer.exe
frick me

(cherry picked from commit 0284eb0430)
2024-08-11 19:54:46 +02:00
3 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
<Project>
<!-- This file automatically reset by Tools/version.py -->
<!-- This file automatically reset by Tools/version.py -->

View File

@@ -54,6 +54,9 @@ END TEMPLATE-->
*None yet*
## 218.2.3
## 218.2.2

View File

@@ -140,7 +140,7 @@ namespace Robust.Shared.ContentPack
{
Process.Start(new ProcessStartInfo
{
FileName = "explorer.exe",
FileName = $"{Environment.GetEnvironmentVariable("SystemRoot")}\\explorer.exe",
Arguments = ".",
WorkingDirectory = fullPath,
});