Merge pull request #563 from Nekotekina/master
Fixed mkdir (PKG Install issue)
This commit is contained in:
+1
-1
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user