diff --git a/installer/AMXXRelease/ABuilder.cs b/installer/AMXXRelease/ABuilder.cs index c51f00bc..fe1ab1ec 100755 --- a/installer/AMXXRelease/ABuilder.cs +++ b/installer/AMXXRelease/ABuilder.cs @@ -34,7 +34,6 @@ public virtual bool Build(Config cfg, Build build) if (!BuildMod(mod)) { System.Console.WriteLine("Mod failed to build: " + mod.GetName()); - return false; } CompressDir( PropSlashes(m_Cfg.OutputPath() + "\\" + m_Cfg.GetReleaseName() + "-" + mod.GetName()), diff --git a/installer/AMXXRelease/AMXXRelease.exe b/installer/AMXXRelease/AMXXRelease.exe index cc360c3a..91abfa4a 100755 Binary files a/installer/AMXXRelease/AMXXRelease.exe and b/installer/AMXXRelease/AMXXRelease.exe differ diff --git a/installer/AMXXRelease/CoreMod.cs b/installer/AMXXRelease/CoreMod.cs index 4a883ac7..09715da1 100755 --- a/installer/AMXXRelease/CoreMod.cs +++ b/installer/AMXXRelease/CoreMod.cs @@ -43,6 +43,10 @@ public override sealed bool ExcludeCopy(string file) if ( ((ABuilder.GetFileName(file).CompareTo("sasm")) == 0) && Releaser.IsWindows ) return true; + if (ABuilder.GetFileName(file).CompareTo("svn_version.tpl") == 0) + { + return true; + } return base.ExcludeCopy(file); }