From a665e6042bd7fb04f762643451ee88001cccc0e1 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Mon, 8 Jan 2024 11:52:17 +0100 Subject: [PATCH] fix postfix formatting --- src/Update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Update.cpp b/src/Update.cpp index b12b602..acc28e2 100644 --- a/src/Update.cpp +++ b/src/Update.cpp @@ -130,7 +130,7 @@ void Update::PerformUpdate(const std::string& InvokedAs) { Distro = DistroID + "." + DistroVersion; } - Postfix = fmt::format(".{}.{}.{}", DistroID, DistroVersion, Arch); + Postfix = fmt::format(".{}.{}", Distro, Arch); #else beammp_infof("BeamMP doesn't provide binaries for this OS, please update manually"); std::exit(1);