summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-09-12 12:58:30 -0700
committerBharat Mediratta <bharat@menalto.com>2010-09-12 12:58:30 -0700
commit0b223d5484b7be7db4b527f6d72a6eed9040fc6f (patch)
tree199b82269264b5b76acf14303c2d59bf22db3a55 /index.php
parentf84c4a6192ea0e47ca5b2006baa0bfd7e09a682c (diff)
Clean up cli default instructions.
Diffstat (limited to 'index.php')
-rw-r--r--index.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/index.php b/index.php
index 4ef3d943..68000ef8 100644
--- a/index.php
+++ b/index.php
@@ -73,9 +73,12 @@ if (PHP_SAPI == "cli") {
break;
default:
- print "To install:\n php index.php install -d database -h host -u user -p password -x table_prefix \n\n\n";
- print "To upgrade:\n php index.php upgrade\n\n\n";
- print "Developer-only features:\n ** CAUTION! THESE FEATURES -WILL- DAMAGE YOUR INSTALL **\n";
+ print "To install:\n";
+ print " php index.php install -d database -h host -u user -p password -x table_prefix \n\n";
+ print "To upgrade:\n";
+ print " php index.php upgrade\n\n";
+ print "Developer-only features:\n";
+ print " ** CAUTION! THESE FEATURES -WILL- DAMAGE YOUR INSTALL **\n";
print " php index.php package # create new installer files\n";
print " php index.php test # run unit tests\n";
exit(1);