Skip to content

Commit

Permalink
🐛 Fixing a bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
wisp-x committed Jul 15, 2020
1 parent 678ba4f commit 7721e49
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions application/index/controller/Install.php
Expand Up @@ -133,6 +133,9 @@ public function index($step = 1)
} catch (Exception $e) {
@unlink(app()->getAppPath() . 'install.lock');
$this->error($e->getMessage());
} catch (\Exception $e) {
@unlink(app()->getAppPath() . 'install.lock');
$this->error($e->getMessage());
} catch (\PDOException $e) {
@unlink(app()->getAppPath() . 'install.lock');
$this->error($e->getMessage());
Expand Down

0 comments on commit 7721e49

Please sign in to comment.