We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b96757 commit 0426b93Copy full SHA for 0426b93
app/Console/Commands/QueueUpdates.php
@@ -34,7 +34,9 @@ public function handle(): int
34
{
35
$targetVersion = $this->queryTargetVersion();
36
37
- $this->confirm("Are you sure you would like to push the updates for " . $targetVersion);
+ if (!$this->confirm("Are you sure you would like to push the updates for " . $targetVersion)) {
38
+ return Command::FAILURE;
39
+ }
40
41
$this->output->writeln('Pushing update jobs');
42
0 commit comments