diff --git a/SPTInstaller/SPTInstaller.csproj b/SPTInstaller/SPTInstaller.csproj index 19519de..829b453 100644 --- a/SPTInstaller/SPTInstaller.csproj +++ b/SPTInstaller/SPTInstaller.csproj @@ -10,8 +10,8 @@ icon.ico Assets\spt_installer.ico Debug;Release;TEST - 2.83 - 2.83 + 2.84 + 2.84 SPT diff --git a/SPTInstaller/ViewModels/MessageViewModel.cs b/SPTInstaller/ViewModels/MessageViewModel.cs index 57bde1f..1755f75 100644 --- a/SPTInstaller/ViewModels/MessageViewModel.cs +++ b/SPTInstaller/ViewModels/MessageViewModel.cs @@ -182,6 +182,11 @@ public class MessageViewModel : ViewModelBase try { + if (data.TargetInstallPath == Environment.CurrentDirectory) + { + return; + } + File.Copy(App.LogPath, Path.Join(data.TargetInstallPath, "spt-installer.log"), true); } catch (Exception ex)