From 16b11c593a6ef922074042d4efa970b6a8cabdc7 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Mon, 27 Feb 2017 10:01:02 -0500 Subject: [PATCH] final adjustment, 4coder 4.0.17 ready to go --- meta/build.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/build.cpp b/meta/build.cpp index 68273a89..b2923460 100644 --- a/meta/build.cpp +++ b/meta/build.cpp @@ -527,15 +527,15 @@ get_4coder_dist_name(String *zip_file, b32 OS_specific, char *folder, char *tier append_int_to_str (zip_file, MINOR); append_sc (zip_file, "-"); append_int_to_str (zip_file, PATCH); - if (tier != 0){ + if (tier != 0 && !match_cc(tier, "alpha")){ append_sc (zip_file, "-"); append_sc (zip_file, tier); } if (OS_specific){ #if defined(IS_WINDOWS) - append_sc(zip_file, "win-"); + append_sc(zip_file, "-win"); #elif defined(IS_LINUX) && defined(IS_64BIT) - append_sc(zip_file, "linux-"); + append_sc(zip_file, "-linux"); #else #error No OS string for zips on this OS #endif