Skip to content
Snippets Groups Projects
Commit 3636b9cd authored by michel's avatar michel
Browse files

v4 CheckPath.m: use mkdir() instead of system call

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@599 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 4abe24ec
No related branches found
No related tags found
No related merge requests found
...@@ -5,5 +5,5 @@ global M_ ...@@ -5,5 +5,5 @@ global M_
DirectoryName = [ M_.dname '\' type ]; DirectoryName = [ M_.dname '\' type ];
if ~isdir(DirectoryName) if ~isdir(DirectoryName)
system([ 'md ' DirectoryName]); mkdir('.',DirectoryName);
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment