From 9b3bafa21af498b216bbe5f491c575a5a26f3090 Mon Sep 17 00:00:00 2001 From: ana Date: Tue, 28 Apr 2015 11:51:39 +0300 Subject: [PATCH] Fix for Windows: suppress confirmation before deleting files during the closure procedure --- src/Container/Container_i.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Container/Container_i.cxx b/src/Container/Container_i.cxx index 7b733fe7b..b1db97262 100644 --- a/src/Container/Container_i.cxx +++ b/src/Container/Container_i.cxx @@ -1822,7 +1822,7 @@ void Engines_Container_i::clearTemporaryFiles() std::list::const_iterator it; for ( it = _tmp_files.begin(); it != _tmp_files.end(); ++it ) { #ifdef WIN32 - std::string command = "del /F "; + std::string command = "del /F /P"; #else std::string command = "rm -rf "; #endif -- 2.39.2