Skip to content
Snippets Groups Projects
Commit 8a0fe914 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Removed annoying warning messages.

parent 43e2c9ec
Branches
Tags
No related merge requests found
......@@ -32,12 +32,16 @@ DirectoryName = [ dname '/' type ];
if ~isdir(dname)
% Make sure there isn't a file with the same name, see trac ticket #47
if isfile(dname)
delete(dname)
end
mkdir('.', dname);
end
if ~isdir(DirectoryName)
% Make sure there isn't a file with the same name, see trac ticket #47
if isfile(DirectoryName)
delete(DirectoryName)
end
mkdir('.',DirectoryName);
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment