Skip to content

Commit 5a23d68

Browse files
committed
directory creates for docs output
1 parent c65e892 commit 5a23d68

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

apidocs/cachebox.cfm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
docName = "CacheBox-APIDocs";
55
base = expandPath( "/cachebox/system" );
66
7+
// Create the output directory if it doesn't exist
8+
if ( !directoryExists( url.path ) ) {
9+
directoryCreate( url.path );
10+
}
11+
712
docbox = new docbox.DocBox( properties = {
813
projectTitle = "CacheBox v#url.version#",
914
outputDir = url.path

apidocs/coldbox.cfm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
docName = "ColdBox-APIDocs";
55
base = expandPath( "/coldbox/system" );
66
7+
// Create the output directory if it doesn't exist
8+
if ( !directoryExists( url.path ) ) {
9+
directoryCreate( url.path );
10+
}
11+
712
docbox = new docbox.DocBox( properties = {
813
projectTitle = "ColdBox v#url.version#",
914
outputDir = url.path

apidocs/logbox.cfm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
docName = "logbox-APIDocs";
55
base = expandPath( "/logbox/system" );
66
7+
// Create the output directory if it doesn't exist
8+
if ( !directoryExists( url.path ) ) {
9+
directoryCreate( url.path );
10+
}
11+
712
docbox = new docbox.DocBox( properties = {
813
projectTitle = "logbox v#url.version#",
914
outputDir = url.path

apidocs/wirebox.cfm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
docName = "wirebox-APIDocs";
55
base = expandPath( "/wirebox/system" );
66
7+
// Create the output directory if it doesn't exist
8+
if ( !directoryExists( url.path ) ) {
9+
directoryCreate( url.path );
10+
}
11+
712
docbox = new docbox.DocBox( properties = {
813
projectTitle = "wirebox v#url.version#",
914
outputDir = url.path

0 commit comments

Comments
 (0)