mirror of
https://github.com/electron/electron.git
synced 2026-01-25 23:38:18 -05:00
fix incorrect std namespacing
This commit is contained in:
@@ -107,7 +107,7 @@ void OverrideWinAppLogsPath() {
|
||||
|
||||
void OverrideLinuxAppLogsPath() {
|
||||
std::string appName = GetApplicationName();
|
||||
std::string homePath = std:string(getenv("HOME"));
|
||||
std::string homePath = std::string(getenv("HOME"));
|
||||
std::string appLogPath = homePath + "/.config/" + appName + "/logs";
|
||||
|
||||
int status = mkdir(appLogPath.c_str(), S_IRWXU | S_IRGRP | S_IROTH);
|
||||
|
||||
Reference in New Issue
Block a user