From 02b645a3f9fc36f4ae4d24f1af0895f45df169a7 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 17 May 2007 00:27:09 +0000 Subject: [PATCH] added more scripting exports --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40813 --- tools/builder/PkgCore.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index 9e6d0b4c..6e4dce37 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -29,7 +29,7 @@ namespace builder */ public override string [] GetFolders() { - string [] folders = new string[8]; + string [] folders = new string[10]; folders[0] = "bin"; folders[1] = "plugins/disabled"; @@ -39,6 +39,8 @@ namespace builder folders[5] = "extensions"; folders[6] = "scripting/include"; folders[7] = "data"; + folders[8] = "scripting/admin-flatfile"; + folders[9] = "scripting/testsuite"; return folders; } @@ -68,6 +70,8 @@ namespace builder builder.CopyFolder(this, "plugins/include", "scripting/include", include_omits); builder.CopyFolder(this, "translations", "translations", null); builder.CopyFolder(this, "public/licenses", null, null); + builder.CopyFolder(this, "plugins/admin-flatfile", "scripting/admin-flatfile"); + builder.CopyFolder(this, "plugins/testsuite", "scripting/testsuite"); } /**