Skip to content

Commit

Permalink
Clean up other commands a bit to match this one.
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseleite committed Dec 4, 2024
1 parent 72eca06 commit 2faa54f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/StarterKitExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function handle()
return 1;
}

$this->components->info("Starter kit was successfully exported to [$path].");
$this->components->success("Starter kit was successfully exported to [$path].");
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Console/Commands/StarterKitInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function handle()
[$package, $branch] = $this->getPackageAndBranch();

if ($this->validationFails($package, new ComposerPackage)) {
return;
return 1;
}

$licenseManager = StarterKitLicenseManager::validate($package, $this->option('license'), $this, $this->input->isInteractive());
Expand Down Expand Up @@ -90,7 +90,7 @@ public function handle()
$this->comment('composer global update statamic/cli'.PHP_EOL);
}

$this->components->info("Starter kit [$package] was successfully installed.");
$this->components->success("Starter kit [$package] was successfully installed.");
}

/**
Expand Down

0 comments on commit 2faa54f

Please sign in to comment.