diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-30 15:41:16 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-30 15:53:37 +0200 |
commit | 9d9aa71eb736885f23c069a75c7a047b06434178 (patch) | |
tree | 4adb52cc387b6c61b5f54565abe362f9dedc26a3 /includes/autoload.php | |
parent | 5456fea5031000a6325cdcae5f1e9d4c16b6ed50 (diff) |
Installation: Added migrations for install.sql and update.sql files
Diffstat (limited to 'includes/autoload.php')
-rw-r--r-- | includes/autoload.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/autoload.php b/includes/autoload.php index 0cd9d355..f2e90b16 100644 --- a/includes/autoload.php +++ b/includes/autoload.php @@ -2,7 +2,8 @@ // Check for autoloader if (!is_readable(__DIR__ . '/../vendor/autoload.php')) { - die('Please run composer.phar install'); + echo 'Please run composer.phar install'; + exit(1); } // Include composer autoloader |