diff --git a/CreamInstaller/InstallForm.cs b/CreamInstaller/InstallForm.cs index b711307..2417494 100644 --- a/CreamInstaller/InstallForm.cs +++ b/CreamInstaller/InstallForm.cs @@ -74,7 +74,7 @@ namespace CreamInstaller Program.CancellationTokenSource = new CancellationTokenSource(); Program.OutputTask = Program.MegaApiClient.DownloadFileAsync(selection.DownloadNode, Program.OutputFile, progress, Program.CancellationTokenSource.Token); await Program.OutputTask; - UpdateUser($"Downloaded file: {Program.OutputFile}", LogColor.Resource); + UpdateUser($"Downloaded archive: {Program.OutputFile}", LogColor.Resource); UpdateUser("Searching for CreamAPI files in downloaded archive . . . ", LogColor.Operation); string resourcePath = null; List resources = new List(); diff --git a/CreamInstaller/Program.cs b/CreamInstaller/Program.cs index 98f304e..43e0148 100644 --- a/CreamInstaller/Program.cs +++ b/CreamInstaller/Program.cs @@ -119,10 +119,11 @@ namespace CreamInstaller try { File.Delete(OutputFile); + InstallForm?.UpdateUser($"Deleted archive: {OutputFile}", LogColor.Cleanup); } catch { - InstallForm?.UpdateUser($"WARNING: Failed to clean up downloaded archive: {OutputFile}", LogColor.Warning); + InstallForm?.UpdateUser($"WARNING: Failed to clean up archive: {OutputFile}", LogColor.Warning); } OutputFile = null; }