Skip to content

Commit cabf7bd

Browse files
committed
Changed document output location to be a new sub directory it's more effective for .gitignore and easier to clean up later. It also does not generate documenation website directory anymore since the web code no longer exists in this repository.
1 parent cdcb840 commit cabf7bd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

documentation/src/build_docs.pl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@
2222
my $authormeta;
2323
my $copyrightyears;
2424

25+
2526
populate_map();
2627
build_copyright();
2728

2829
#Now build the documentation
2930
my $index;
3031
my $nextprev;
3132

32-
output_doc_dir('..');
33-
output_doc_dir('../../website/Doc');
33+
my $outputpath = '..\output';
34+
mkdir($outputpath);
35+
output_doc_dir($outputpath);
3436

3537
sub output_doc_dir {
3638
#The directory the output goes into

0 commit comments

Comments
 (0)