diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-17 11:18:31 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-17 11:18:31 -0700 |
commit | 191ce0245d9f200f7d70bffc0499a2cece10487e (patch) | |
tree | d0ad081d70d4d0eebba364424228c1616601909c /installer/cli.php | |
parent | 2ca2e5b6f42e3c201827309535a4a5f5825f212a (diff) | |
parent | 6469763225b1f74bc5391f09446bcf280bea389e (diff) |
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'installer/cli.php')
-rw-r--r-- | installer/cli.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/installer/cli.php b/installer/cli.php index 50845ea4..182c3d26 100644 --- a/installer/cli.php +++ b/installer/cli.php @@ -30,6 +30,11 @@ if (installer::already_installed()) { return; } +$errors = installer::check_environment(); +if ($errors) { + oops(implode("errors", "\n")); +} + $config = parse_cli_params(); if (!installer::connect($config)) { oops("Unable to connect to the database.\n" . mysql_error() . "\n"); |