Skip to content

Commit f2e0f9f

Browse files
committed
fix: add condition to change owner config
1 parent 25a61f9 commit f2e0f9f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Commands/ChangeOwnerConfigJson.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ public function handle(): void
3838
$user = $this->argument('user') ?: $this->getDefaultUserGroup();
3939
$group = $this->argument('group') ?: $this->getDefaultUserGroup();
4040

41-
if (empty($user) || empty($group)) {
42-
$user = $group = $this->getDefaultUserGroup();
41+
if (!is_string($user) || !is_string($group)) {
42+
$this->error('Failed to retrieve default user and group');
43+
44+
return;
4345
}
4446

4547
$this->changeOwner($user, $group);

0 commit comments

Comments
 (0)