hyprpm: fix execute permission bit on installed dirs (#10435)
This commit is contained in:
parent
18377d221d
commit
dfa4836216
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue