From a257d1ab8f287893a6a929ce88b6875d5d6286bc Mon Sep 17 00:00:00 2001 From: rnv Date: Wed, 30 Jan 2019 17:23:21 +0300 Subject: [PATCH] Fix for "23677: [CEA 13186] cannot save study to h5 format" issue. --- src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx b/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx index c8d893cf7..973f7ce6b 100644 --- a/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx +++ b/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx @@ -773,7 +773,7 @@ bool SALOMEDSImpl_Study::Impl_SaveAs(const std::string& aStudyUrl, std::string aStudyTmpDir = SALOMEDSImpl_Tool::GetDirFromPath(aUrl); #ifdef WIN32 - aCmd = "dir /B \"" + aStudyTmpDir +"\" > " + aTmpFile; + aCmd = "dir /B \"" + aStudyTmpDir +"\" > \"" + aTmpFile + "\""; #else aCmd ="ls -1 \"" + aStudyTmpDir +"\" > " + aTmpFile; #endif -- 2.39.2