We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e41186b commit 65ac025Copy full SHA for 65ac025
src/webman
@@ -8,5 +8,7 @@ require_once __DIR__ . '/support/bootstrap.php';
8
$cli = new Command();
9
$cli->setName('webman cli');
10
$cli->installInternalCommands();
11
-$cli->installCommands(app_path(). '/command');
+if (is_dir($command_path = app_path(). '/command')) {
12
+ $cli->installCommands($command_path);
13
+}
14
$cli->run();
0 commit comments