mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-29 23:45:58 +01:00
configmgr: fix warning
This commit is contained in:
parent
141cd09bd3
commit
ae638d997d
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ std::optional<std::string> CConfigManager::generateConfig(std::string configPath
|
||||||
Debug::log(WARN, "Creating config home directory");
|
Debug::log(WARN, "Creating config home directory");
|
||||||
try {
|
try {
|
||||||
std::filesystem::create_directories(parentPath);
|
std::filesystem::create_directories(parentPath);
|
||||||
} catch (std::exception e) { throw e; }
|
} catch (std::exception& e) { throw e; }
|
||||||
}
|
}
|
||||||
|
|
||||||
Debug::log(WARN, "No config file found; attempting to generate.");
|
Debug::log(WARN, "No config file found; attempting to generate.");
|
||||||
|
|
Loading…
Reference in a new issue