mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
fix override path
This commit is contained in:
committed by
Shelley Vohr
parent
3de008035a
commit
e096b5ce83
@@ -98,11 +98,11 @@ void OverrideLinuxAppDataPath() {
|
||||
|
||||
void OverrideLinuxAppLogsPath() {
|
||||
std::string appName = GetApplicationName();
|
||||
std::string logPath = "/var/log"
|
||||
std::string logPath = "/var/log";
|
||||
|
||||
std::string appLogPath = logPath + appName
|
||||
std::string appLogPath = logPath + appName;
|
||||
|
||||
PathService::Override(DIR_APP_DATA, base::FilePath(appLogPath));
|
||||
PathService::Override(DIR_APP_LOGS base::FilePath(appLogPath));
|
||||
}
|
||||
|
||||
int BrowserX11ErrorHandler(Display* d, XErrorEvent* error) {
|
||||
|
||||
Reference in New Issue
Block a user