Skip to content

Commit b53a014

Browse files
committed
[FEATURE] Show command as additional information in list
1 parent 3d8a00c commit b53a014

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Classes/Task/CommandExecutor.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ public function getTitle(): ?string
4444

4545
public function getAdditionalInformation(): ?string
4646
{
47-
return null;
47+
$additionalInformation = $this->options['command'];
48+
if (!empty($this->options['arguments'])) {
49+
$additionalInformation .= ' "' . implode('","', $this->options['arguments']) . '"';
50+
}
51+
52+
return $additionalInformation;
4853
}
4954

5055
public function getProgress(): float

0 commit comments

Comments
 (0)