From 421ac4a05ea519074557ccdf620b507628e494ec Mon Sep 17 00:00:00 2001 From: James Titcumb Date: Fri, 18 Apr 2025 07:09:07 +0100 Subject: [PATCH] Fix typo in non-phar self-verify warning --- src/Command/SelfVerifyCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/SelfVerifyCommand.php b/src/Command/SelfVerifyCommand.php index b012c3e0..2978eddb 100644 --- a/src/Command/SelfVerifyCommand.php +++ b/src/Command/SelfVerifyCommand.php @@ -48,7 +48,7 @@ public function configure(): void public function execute(InputInterface $input, OutputInterface $output): int { if (! PieVersion::isPharBuild()) { - $output->writeln('Aborting! You are not running a PHAR, cannot self-update.'); + $output->writeln('Aborting! You are not running a PHAR, cannot self-verify.'); return Command::FAILURE; }