no longer install auto-remove

This commit is contained in:
Parziphal 2013-10-27 15:05:51 -05:00
parent eea2d98303
commit 30764ffc17
3 changed files with 0 additions and 13 deletions

View File

@ -10,17 +10,6 @@ abstract class Base
rename(\Rails::publicPath() . '/index', \Rails::publicPath() . '/index.php');
}
protected function deleteInstallFiles()
{
\Rails\Toolbox\FileTools::emptyDir($this->root());
# We may not have permissions to delete the dir
try {
unlink($this->root());
} catch (\Exception $e) {
}
}
protected function root()
{
return __DIR__ . '/../..';

View File

@ -25,7 +25,6 @@ class Install extends Base
$this->setLoginCookies();
$this->createPublicDataDirs();
$this->renameIndex();
$this->deleteInstallFiles();
}
private function createTables()

View File

@ -18,7 +18,6 @@ class Update extends Base
$this->executeQueries();
$this->createHistory();
$this->renameIndex();
$this->deleteInstallFiles();
}
private function executeQueries()