Merge pull request #3812 from Icinga/fix/cli-css-path

CLI: Fix CSS path
This commit is contained in:
Johannes Meyer 2019-06-05 14:09:24 +02:00 committed by GitHub
commit dbd5e064ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class StyleSheet
$app = Icinga::app();
$this->app = $app;
$this->lessCompiler = new LessCompiler();
$this->pubPath = $app->getBootstrapDirectory();
$this->pubPath = $app->getBaseDir('public');
$this->collect();
}