3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-02-05 02:55:35 +00:00

hyprpm: make temp root if not present

This commit is contained in:
Vaxry
2025-09-18 13:24:58 +01:00
parent 5648077978
commit 059ec60e9f

View File

@ -18,6 +18,9 @@ static std::string getTempRoot() {
const auto STR = ENV + std::string{"/hyprpm/"};
if (!std::filesystem::exists(STR))
mkdir(STR.c_str(), S_IRWXU);
return STR;
}