From de05f94a8fb7755c9e0967487879e70833ebfa55 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 6 Jul 2010 18:26:37 +0800 Subject: [PATCH] JSDOC/BuildDocs.js --- JSDOC/BuildDocs.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/JSDOC/BuildDocs.js b/JSDOC/BuildDocs.js index 76d578d..7812b3e 100644 --- a/JSDOC/BuildDocs.js +++ b/JSDOC/BuildDocs.js @@ -171,13 +171,17 @@ BuildDocs = { if (!File.isDirectory(Options.target+"/symbols/src")) File.mkdir(Options.target+"/symbols/src"); + if (!File.isDirectory(Options.target +"/json")) { + File.makeDir(Options.target +"/json"); + } + + Options.LOG.inform("Copying files from static"); // copy everything in 'static' into File.list(Options.templatesDir + '/static').forEach(function (f) { File.copy(Options.templatesDir + '/static/' + f, Options.target + '/' + f); }); - if (!File.isDirectory(Options.target +"/json")) { - File.makeDir(Options.target +"/json"); - } + + // used to check the details of things being linked to Link.symbolSet = symbolSet; -- 2.39.2