Skip to content

Commit fdf0180

Browse files
committed
Print correct docs path to console
1 parent 25bcae7 commit fdf0180

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)