From 3636b9cd10c2fda75d22d36ae05863e94c50095c Mon Sep 17 00:00:00 2001 From: michel Date: Sun, 15 Jan 2006 14:46:19 +0000 Subject: [PATCH] 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 --- matlab/CheckPath.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/CheckPath.m b/matlab/CheckPath.m index 87ad27875..5fed1a106 100644 --- a/matlab/CheckPath.m +++ b/matlab/CheckPath.m @@ -5,5 +5,5 @@ global M_ DirectoryName = [ M_.dname '\' type ]; if ~isdir(DirectoryName) - system([ 'md ' DirectoryName]); + mkdir('.',DirectoryName); end \ No newline at end of file