From 488be71e5075ab7ebc5c2c0a7286d7f19293d130 Mon Sep 17 00:00:00 2001 From: Raza Mehdi Date: Mon, 24 Jun 2024 17:42:27 +0500 Subject: [PATCH] Update command output. Signed-off-by: Raza Mehdi --- src/Commands/PublishAssetsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/PublishAssetsCommand.php b/src/Commands/PublishAssetsCommand.php index 26ac2409..1c457f5b 100644 --- a/src/Commands/PublishAssetsCommand.php +++ b/src/Commands/PublishAssetsCommand.php @@ -31,7 +31,7 @@ public function handle(): void $result = Process::run('npm install --save @paypal/paypal-js'); if ($result->successful()) { echo $result->output(); - $this->comment('Installed the PayPal JS SDK.'); + $this->line('Installed the PayPal JS SDK.'); } else { echo $result->errorOutput(); $this->error('Unable to install the PayPal JS SDK.');