Don't use wxMkDir, it shows stupid error messages

This commit is contained in:
Twan van Laarhoven
2020-05-16 20:04:10 +02:00
parent 424fd96185
commit 6b6306fc86
3 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -401,7 +401,7 @@ void Package::openZipfile() {
void Package::saveToDirectory(const String& saveAs, bool remove_unused, bool is_copy) {
// create directory?
wxMkdir(saveAs);
create_directory(saveAs);
// write to a directory
VCSP vcs = getVCS();
FOR_EACH(f, files) {