Skip to content

Commit 96898e4

Browse files
Updated message in BaseCommand.php
1 parent ece006a commit 96898e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BaseCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
120120
protected function getToken()
121121
{
122122
$helper = $this->getHelper('question');
123-
$question = new Question("Please enter the PackageKit project token. Follow the link and create a project: https://www.pkgkit.com/awes-io/create \n");
123+
$question = new Question("Please enter your API-TOKEN from Package Kit \n");
124124
$this->token = $helper->ask($this->input, $this->output, $question);
125125
}
126126

@@ -130,7 +130,7 @@ protected function getToken()
130130
protected function getKey()
131131
{
132132
$helper = $this->getHelper('question');
133-
$question = new Question("Please enter the PackageKit cdn key. Follow the link and create a project: https://www.pkgkit.com/awes-io/create \n");
133+
$question = new Question("Please enter your PKGKIT_CDN_KEY. You can get it for free on https://www.pkgkit.com/awes-io/create \n");
134134
$this->key = $helper->ask($this->input, $this->output, $question);
135135
}
136136

0 commit comments

Comments
 (0)