We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a224c commit 049ba1cCopy full SHA for 049ba1c
web/src/app/WebApp/InstallerInterface.php
@@ -6,4 +6,6 @@
6
interface InstallerInterface
7
{
8
public function install(array $options = null);
9
+ public function getDocRoot(string $append_relative_path = null) : string;
10
+ public function withDatabase() : bool;
11
}
web/src/app/WebApp/Installers/BaseSetup.php
@@ -70,6 +70,8 @@ public function retrieveResources($options)
70
71
public function install(array $options=null)
72
73
+ $this->appcontext->runUser('v-delete-fs-file', [$this->getDocRoot('robots.txt')]);
74
+ $this->appcontext->runUser('v-delete-fs-file', [$this->getDocRoot('index.html')]);
75
return $this->retrieveResources($options);
76
77
0 commit comments