Skip to content

Commit

Permalink
Update mutagen sync list command
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-redfern committed Apr 21, 2020
1 parent 3af36c5 commit 53cc9ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/StatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function configure()

protected function execute(InputInterface $input, OutputInterface $output)
{
$this->getMutagen()->assertDaemonIsRunning($input, $output, true);
$this->getMutagen()->assertDaemonIsRunning($input, $output);

$tasks = $this->getConfig()->getTasks();

Expand Down
2 changes: 1 addition & 1 deletion src/Services/MutagenSessionParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MutagenSessionParser
public function sessions(): Sessions
{
$sessions = new Collection();
$proc = new Process(['mutagen', 'list']);
$proc = new Process(['mutagen', 'sync', 'list']);
$proc->run();

if (!$proc->isSuccessful()) {
Expand Down

0 comments on commit 53cc9ba

Please sign in to comment.