You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/InitCommand.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
useGrav\Plugin\GitSync\GitSync;
5
5
6
6
/**
7
-
* Class Initommand
7
+
* Class InitCommand
8
8
*
9
9
* @package Grav\Plugin\Console
10
10
*/
@@ -15,7 +15,7 @@ protected function configure()
15
15
$this
16
16
->setName('init')
17
17
->setDescription('Initializes your git repository')
18
-
->setHelp('The <info>init</info> command runs the same git commands as the onAdminAfterSave function. Use this to manually initialise git-sync (useful for automated deployments).')
18
+
->setHelp('The <info>init</info> command runs the same git commands as the onAdminAfterSave function. Use this to manually initialize git-sync (useful for automated deployments).')
19
19
;
20
20
}
21
21
@@ -29,12 +29,12 @@ protected function serve()
29
29
$this->output->writeln('');
30
30
31
31
if (!$repository) {
32
-
$this->output->writeln('<red>ERROR:</red> No repository has been configured');
32
+
$this->output->writeln('<red>ERROR:</red> No repository has been configured!');
0 commit comments