diff --git a/src/updateinformation/GithubReleasesZsyncUpdateInformation.h b/src/updateinformation/GithubReleasesZsyncUpdateInformation.h index 631a468..fe4cead 100644 --- a/src/updateinformation/GithubReleasesZsyncUpdateInformation.h +++ b/src/updateinformation/GithubReleasesZsyncUpdateInformation.h @@ -39,8 +39,6 @@ namespace appimage::update::updateinformation { url << "tags/" << tag; } - std::cerr << url.str() << std::endl; - auto response = cpr::Get(cpr::Url{url.str()}); nlohmann::json json; diff --git a/src/updater.cpp b/src/updater.cpp index e42578a..c74828c 100644 --- a/src/updater.cpp +++ b/src/updater.cpp @@ -484,7 +484,7 @@ namespace appimage::update { std::ostringstream oss; oss << "'" << gpgPath << "' " - << "--no-default-keyring --keyring '" << tempKeyRingPath << "' --import"; + << "--no-default-keyring --keyring '" << tempKeyRingPath << "' --import 2>/dev/null"; auto command = oss.str();