Skip to content

Commit cbcb111

Browse files
authored
Merge pull request #311 from shalvah/print-correct-docs-path
Print correct docs path in console
2 parents b0b3cb1 + fdf0180 commit cbcb111

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Mpociot/ApiDoc/Commands/GenerateDocumentation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private function writeMarkdown($parsedRoutes)
197197

198198
$documentarian->generate($outputPath);
199199

200-
$this->info('Wrote HTML documentation to: '.$outputPath.'/public/index.html');
200+
$this->info('Wrote HTML documentation to: '.$outputPath.'/index.html');
201201

202202
if ($this->option('noPostmanCollection') !== true) {
203203
$this->info('Generating Postman collection');

src/Mpociot/ApiDoc/Commands/UpdateDocumentation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ public function handle()
5353

5454
$documentarian->generate($outputPath);
5555

56-
$this->info('Wrote HTML documentation to: '.$outputPath.'/public/index.html');
56+
$this->info('Wrote HTML documentation to: '.$outputPath.'/index.html');
5757
}
5858
}

0 commit comments

Comments
 (0)