diff options
author | Vaxry <[email protected]> | 2024-07-30 12:11:38 +0200 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-07-30 12:11:38 +0200 |
commit | 46c6efeab39cae0e709a2a29d299dd4dfab36a8c (patch) | |
tree | 3941344dc69a6f7583484c5fc104b9216adc5b2f /hyprpm | |
parent | 68ee4dda5e4f4ce719bc814b873deca73f3d5eba (diff) | |
download | Hyprland-46c6efeab39cae0e709a2a29d299dd4dfab36a8c.tar.gz Hyprland-46c6efeab39cae0e709a2a29d299dd4dfab36a8c.zip |
hyprpm: execute all git commands regardless of fails
Diffstat (limited to 'hyprpm')
-rw-r--r-- | hyprpm/src/core/PluginManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp index a29afad7..6988547c 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -479,7 +479,7 @@ bool CPluginManager::updateHeaders(bool force) { if (m_bVerbose) progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "git returned (co): " + ret); - ret = execAndGet("cd " + WORKINGDIR + " && git rm subprojects/tracy && git submodule update --init 2>&1 && git reset --hard --recurse-submodules " + HLVER.hash); + ret = execAndGet("cd " + WORKINGDIR + " ; git rm subprojects/tracy ; git submodule update --init 2>&1 ; git reset --hard --recurse-submodules " + HLVER.hash); if (m_bVerbose) progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "git returned (rs): " + ret); |