diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-30 16:07:50 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-30 16:07:50 +0200 |
commit | 2bebbeb1919e1d370ac5c0668e0db5ea63e73292 (patch) | |
tree | 759d675b621eed86b20f14abe448e83fa8d22562 /includes | |
parent | 175c335810817ff3e989f368889274d3f09c08b1 (diff) |
Installation: Added migrations for install.sql and update.sql files
Diffstat (limited to 'includes')
-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 |