Skip to content

Commit

Permalink
hyprpm: fix updating headers
Browse files Browse the repository at this point in the history
oopsie daisy
  • Loading branch information
vaxerski committed Apr 28, 2024
1 parent 95a5e75 commit d20ee31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyprpm/src/core/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ bool CPluginManager::updateHeaders(bool force) {
progress.print();

std::string cmd =
std::format("sed -i -e \"s#PREFIX = /usr/local#PREFIX = {}#\" {}/Makefile && cd {} && make installheaders", WORKINGDIR, WORKINGDIR, DataState::getHeadersPath());
std::format("sed -i -e \"s#PREFIX = /usr/local#PREFIX = {}#\" {}/Makefile && cd {} && make installheaders", DataState::getHeadersPath(), WORKINGDIR, WORKINGDIR);
if (m_bVerbose)
progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "installation will run: " + cmd);

Expand Down

0 comments on commit d20ee31

Please sign in to comment.