From 510b764d4373cfcd360982b0ca59ad39fba58631 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 3 Mar 2007 09:46:36 +0000 Subject: [PATCH] fixed really stupid bug --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40581 --- tools/builder/PkgCore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index 9dde3b0a..1190cd24 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -60,10 +60,10 @@ namespace builder plugin_omits[0] = "spcomp.exe"; string [] include_omits = new string[1]; - include_omits[1] = "version.tpl"; + include_omits[0] = "version.tpl"; builder.CopyFolder(this, "plugins", "scripting", plugin_omits); - builder.CopyFolder(this, "plugins/include", "scripting/include", null); + builder.CopyFolder(this, "plugins/include", "scripting/include", include_omits); builder.CopyFolder(this, "translations", "translations", null); builder.CopyFolder(this, "public/licenses", null, null); }