mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-03-18 18:02:49 +01:00
Standard directory access should be 755 in stead of 744.
This commit is contained in:
@@ -81,7 +81,7 @@ bool CollectionInfoBuilder::createCollectionDirectory(std::string name)
|
||||
#if defined(__MINGW32__)
|
||||
if(mkdir(it->c_str()) == -1)
|
||||
#else
|
||||
if(mkdir(it->c_str(), 0744) == -1)
|
||||
if(mkdir(it->c_str(), 0755) == -1)
|
||||
#endif
|
||||
{
|
||||
std::cout << "Could not create folder \"" << *it << "\":" << errno << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user