Skip to content

Commit

Permalink
#97384 changing the file save path in the Report Concurrency command
Browse files Browse the repository at this point in the history
  • Loading branch information
Ewa Soroka committed Jan 16, 2024
1 parent 55e0276 commit 509af5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Moosh/Command/Generic/Report/ReportConcurrency.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function execute()
return;
}
if ($options['csv']) {
$filepath = $this->cwd . '/' . $options['csv'];
$filepath = '/' . $options['csv'];
$csvfile = fopen($filepath, 'w');
if (!$csvfile) {
cli_error("Can't open '$filepath' for writing");
Expand Down

0 comments on commit 509af5f

Please sign in to comment.