builder now creates a data folder

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40752
This commit is contained in:
David Anderson 2007-05-06 19:45:46 +00:00
parent b8e2b6cf68
commit a247f402ca

View File

@ -29,7 +29,7 @@ namespace builder
*/
public override string [] GetFolders()
{
string [] folders = new string[7];
string [] folders = new string[8];
folders[0] = "bin";
folders[1] = "plugins/disabled";
@ -38,6 +38,7 @@ namespace builder
folders[4] = "logs";
folders[5] = "extensions";
folders[6] = "scripting/include";
folders[7] = "data";
return folders;
}