We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2772b commit 946f00aCopy full SHA for 946f00a
builder/docs_builder.livecodescript
@@ -11,6 +11,21 @@ command logError pError
11
builderLog "error", pError, tContext
12
end logError
13
14
+private command pathEnsure pPath
15
+ if pPath is empty then
16
+ exit pathEnsure
17
+ end if
18
+
19
+ set the itemDelimiter to "/"
20
+ local tPath
21
+ repeat for each item tPart in pPath
22
+ put tPart & "/" after tPath
23
+ if there is no folder tPath then
24
+ create folder tPath
25
26
+ end repeat
27
+end pathEnsure
28
29
command docsBuilderRun pEdition, pVersion
30
start using stack (builderRepoFolder() & slash & "ide-support/revdocsparser.livecodescript")
31
0 commit comments