1
0
mirror of https://github.com/flarum/core.git synced 2025-10-13 16:05:05 +02:00

Public and base directory can be separated (#938)

* Public and base directory can be separated

* Standards compliance for folders separation implementation
This commit is contained in:
Buhnici Alexandru
2016-04-23 05:25:53 +03:00
committed by Toby Zerner
parent d8b043dacb
commit 777579e146
5 changed files with 76 additions and 22 deletions

View File

@@ -358,7 +358,7 @@ class InstallCommand extends AbstractCommand
{
$this->filesystem->copyDirectory(
__DIR__.'/../../../assets',
$this->application->basePath().'/assets'
$this->application->publicPath().'/assets'
);
}