commit 8a8ad84c47705971b62492808800045c6f91961f parent 6777a54600df98056d0d75983fdb7f265cabe6f5 Author: Kaleb Luedtke <jluedtk@jci.com> Date: Thu, 29 Sep 2022 16:40:59 -0500 Add space before path when files remain on uninstall (#2560) Diffstat:
| M | src/AppInstallerCLICore/PortableInstaller.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/AppInstallerCLICore/PortableInstaller.cpp b/src/AppInstallerCLICore/PortableInstaller.cpp @@ -289,7 +289,7 @@ namespace AppInstaller::CLI::Portable else { AICLI_LOG(CLI, Info, << "Unable to remove install directory as there are remaining files in: " << InstallLocation); - m_stream << Resource::String::FilesRemainInInstallDirectory << InstallLocation << std::endl; + m_stream << Resource::String::FilesRemainInInstallDirectory << ' ' << InstallLocation << std::endl; } } }