diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-22 12:14:59 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-25 18:21:26 -0400 |
commit | 3804ae6284aeca449e1ca95c6ae7291519ed6937 (patch) | |
tree | 41e6e4fa38fff52e93adbb0e5e766ca7fe127b71 /src/SMAPI.Installer/InteractiveInstaller.cs | |
parent | 26a629f41b98faafed8af38a89f25d9b821fac0f (diff) | |
download | SMAPI-3804ae6284aeca449e1ca95c6ae7291519ed6937.tar.gz SMAPI-3804ae6284aeca449e1ca95c6ae7291519ed6937.tar.bz2 SMAPI-3804ae6284aeca449e1ca95c6ae7291519ed6937.zip |
fix some installer errors not showing info header
Diffstat (limited to 'src/SMAPI.Installer/InteractiveInstaller.cs')
-rw-r--r-- | src/SMAPI.Installer/InteractiveInstaller.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs index ab07c864..b91d0dd3 100644 --- a/src/SMAPI.Installer/InteractiveInstaller.cs +++ b/src/SMAPI.Installer/InteractiveInstaller.cs @@ -272,7 +272,6 @@ namespace StardewModdingApi.Installer DirectoryInfo bundleDir = new DirectoryInfo(this.BundlePath); paths = new InstallerPaths(bundleDir, installDir, context.ExecutableName); } - Console.Clear(); /********* @@ -309,6 +308,7 @@ namespace StardewModdingApi.Installer return; } } + Console.Clear(); /********* |