summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-12 03:50:24 +0800
committer <unostar@danalan.info>2009-06-12 06:55:19 +0800
commit4c7fc9515ba6069aaf560bbdffcd630f3c42361d (patch)
treece776429b2035406fa924558132f5591baef56e1
parent1d60d8ee46ab0631f628d58e3196276117ad52a4 (diff)
add a missing 'break' after running tests which caused tests not to
run. Signed-off-by: <unostar@danalan.info>
-rw-r--r--index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/index.php b/index.php
index b2170fb1..50c08886 100644
--- a/index.php
+++ b/index.php
@@ -62,6 +62,7 @@ if (PHP_SAPI == "cli") {
@mkdir("test/var/logs", 0777, true);
define("VARPATH", realpath("test/var") . "/");
@copy("var/database.php", VARPATH . "database.php");
+ break;
default:
print "Usage: php index.php { upgrade | package | test }\n";