feat: Update 5 and remove 1 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 53s
Build-Test-Publish / build (linux/arm64) (push) Successful in 2m55s

This commit is contained in:
Your Name
2025-08-29 19:20:52 +12:00
parent 04d240bbd2
commit 6a77e538dd
6 changed files with 89 additions and 216 deletions

View File

@@ -323,7 +323,8 @@ namespace dropshell
for (const auto &[key, value] : extra_env_vars)
scommand->add_env_var(key, value);
return execute_ssh_command(get_SSH_INFO(user), scommand.value(), cMode::Defaults, &output);
// Use Silent mode when capturing output to avoid printing to console
return execute_ssh_command(get_SSH_INFO(user), scommand.value(), cMode::Silent, &output);
}
std::string ServerConfig::get_variable(const std::string &name) const