Merge pull request #563 from Nekotekina/master

Fixed mkdir (PKG Install issue)
This commit is contained in:
B1ackDaemon 2014-07-13 02:21:42 +03:00
commit 582825934c
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ std::string rGetCwd()
bool rMkdir(const std::string &dir) bool rMkdir(const std::string &dir)
{ {
return mkdir(dir.c_str()); return !mkdir(dir.c_str());
} }
bool rMkpath(const std::string& path) bool rMkpath(const std::string& path)