Skip to content

Commit

Permalink
TASK: Fix console output of site:create
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Sep 22, 2023
1 parent 967ca56 commit fee1867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Neos/Classes/Command/SiteCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function createCommand($name, $packageKey, $nodeType, $nodeName = null, $

$this->outputLine(
'Successfully created site "%s" with siteNode "%s", type "%s", packageKey "%s" and state "%s"',
[$name, $nodeName, $nodeType, $packageKey, $inactive ? 'offline' : 'online']
[$name, $nodeName ?: $name, $nodeType, $packageKey, $inactive ? 'offline' : 'online']
);
}

Expand Down

0 comments on commit fee1867

Please sign in to comment.