Skip to content
Snippets Groups Projects
Commit b7290e6d authored by Houtan Bastani's avatar Houtan Bastani
Browse files

ms-sbvar: add confirm_recursive_rmdir

(cherry picked from commit 7bc5d5c2)
parent 01ef016e
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ function delete_dir_if_exists(dirname) ...@@ -11,7 +11,7 @@ function delete_dir_if_exists(dirname)
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright (C) 2011 Dynare Team % Copyright (C) 2011-2013 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -29,6 +29,6 @@ function delete_dir_if_exists(dirname) ...@@ -29,6 +29,6 @@ function delete_dir_if_exists(dirname)
% along with Dynare. If not, see <http://www.gnu.org/licenses/>. % along with Dynare. If not, see <http://www.gnu.org/licenses/>.
if exist(dirname, 'dir') if exist(dirname, 'dir')
rmdir(dirname,'s'); rmdir(dirname);
end end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment