From ce69300c9a5b780b3256870be14d793f131087c1 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 14 Nov 2014 16:01:40 +0100 Subject: [PATCH] cli: Fix the path to the clicommands --- library/Icinga/Cli/Loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Cli/Loader.php b/library/Icinga/Cli/Loader.php index f0aa95499..655ef7c18 100644 --- a/library/Icinga/Cli/Loader.php +++ b/library/Icinga/Cli/Loader.php @@ -66,7 +66,7 @@ class Loader public function __construct(App $app) { $this->app = $app; - $this->coreAppDir = $app->getBaseDir('clicommands'); + $this->coreAppDir = $app->getApplicationDir('clicommands'); } /**