hyprpm: fix execute permission bit on installed dirs (#10435)

This commit is contained in:
Vaxry
2025-05-17 17:08:42 +01:00
committed by GitHub
parent 18377d221d
commit dfa4836216

View File

@@ -566,7 +566,7 @@ bool CPluginManager::updateHeaders(bool force) {
ret = execAndGet(cmd);
cmd = std::format("make -C '{}' installheaders && chmod -R 644 '{}' && find '{}' -type d -exec chmod o+x {{}} \\;", WORKINGDIR, DataState::getHeadersPath(),
cmd = std::format("make -C '{}' installheaders && chmod -R 644 '{}' && find '{}' -type d -exec chmod a+x {{}} \\;", WORKINGDIR, DataState::getHeadersPath(),
DataState::getHeadersPath());
if (m_bVerbose)