From 0c1257d1a2b225c6caab5fd16cba156269912004 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 56718e43f..57aab2da2 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