Skip to content

Commit

Permalink
improve output of shell execution
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Gaal committed Aug 11, 2022
1 parent 252b5c2 commit cebcaed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Commands/ExecuteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public function handle()
}

if ($silent) {
@shell_exec($task);
@system($task);
} else {
$this->components->info(shell_exec($task));
$this->line(system($task));
}
}

Expand Down
Binary file modified builds/alias
Binary file not shown.

0 comments on commit cebcaed

Please sign in to comment.