Skip to content

Commit

Permalink
Remove collapsed true from GItlab CI output
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjaap authored Oct 11, 2024
1 parent 70e27b4 commit c171c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Executor/Messenger.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function startTask(Task $task): void
} else if (getenv('GITLAB_CI')) {
$sectionId = md5($task->getName());
$start = round($this->startTime/1000);
$this->output->writeln("\e[0Ksection_start:{$start}:{$sectionId}[collapsed=true]\r\e[0K{$task->getName()}");
$this->output->writeln("\e[0Ksection_start:{$start}:{$sectionId}\r\e[0K{$task->getName()}");
} else {
$this->output->writeln("<fg=cyan;options=bold>task</> {$task->getName()}");
}
Expand Down

0 comments on commit c171c3e

Please sign in to comment.