summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-03-19 22:56:29 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-03-19 22:56:29 +0100
commitae1ce4a68df467af30fafe2e47a3c11983d7f8be (patch)
tree2e0b9c68657d559bb1a76bf9fd8afa09a4d7c35b /bin
parent9fb664942d6f51d48d02b592980455259907d9a5 (diff)
downloadrpg-ae1ce4a68df467af30fafe2e47a3c11983d7f8be.tar.gz
rpg-ae1ce4a68df467af30fafe2e47a3c11983d7f8be.tar.bz2
wrap help texts to fit typial terminal width
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gittool.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/gittool.php b/bin/gittool.php
index b429c8d1a..cb4ef3484 100755
--- a/bin/gittool.php
+++ b/bin/gittool.php
@@ -8,7 +8,6 @@ define('NOSESSION', 1);
require_once(DOKU_INC . 'inc/init.php');
-
/**
* Easily manage DokuWiki git repositories
*
@@ -25,10 +24,9 @@ class GitToolCLI extends DokuCLI {
protected function setup(DokuCLI_Options $options) {
$options->setHelp(
"Manage git repositories for DokuWiki and its plugins and templates.\n\n" .
- "EXAMPLE\n\n" .
"$> ./bin/gittool.php clone gallery template:ach\n" .
"$> ./bin/gittool.php repos\n" .
- "$> ./bin/gittool.php origin -v\n"
+ "$> ./bin/gittool.php origin -v"
);
$options->registerArgument(
@@ -104,7 +102,6 @@ class GitToolCLI extends DokuCLI {
}
}
-
/**
* Tries to install the given extensions using git clone
*