aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-07-26 11:00:01 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-08-18 10:01:25 +0200
commit5da8e1cf99b4e7d9b1bc37ef874f4a1019acc663 (patch)
treeb68f5f5784ed8c92d44ee06ba0feaf879b4b5202
parentb8f817013b8653d42034a00b15dceb45c65354a9 (diff)
downloadsonarqube-5da8e1cf99b4e7d9b1bc37ef874f4a1019acc663.tar.gz
sonarqube-5da8e1cf99b4e7d9b1bc37ef874f4a1019acc663.zip
Remove extraneous echo calls in showHelp().
Signed-off-by: Sébastien Lesaint <sebastien.lesaint@sonarsource.com>
-rwxr-xr-xscripts/generate_batch_reports.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/generate_batch_reports.sh b/scripts/generate_batch_reports.sh
index 4bdd00fd97f..c427e2bd8d2 100755
--- a/scripts/generate_batch_reports.sh
+++ b/scripts/generate_batch_reports.sh
@@ -40,12 +40,12 @@ function createPrivateClone() {
}
function showHelp() {
- echo "Usage: $0 -d DIR_PATH [ -l integer ] [ -h URL ] [ -u string ] [ -p string ]"
- echo " -d : path to directory where batch report bumpds will be created"
- echo " -l : number of commit in the past (optional: default is $HISTORY_LENGTH)"
- echo " -h : URL of the SQ instance (optional: default is $SONAR_HOST)"
- echo " -u : username to authentication on the SQ instance (optional: default is $SONAR_USER)"
- echo " -p : password to authentication on the SQ instance (optional: default is $SONAR_USER)"
+ echo "Usage: $0 -d DIR_PATH [ -l integer ] [ -h URL ] [ -u string ] [ -p string ]
+ -d : path to directory where batch report bumpds will be created
+ -l : number of commit in the past (optional: default is $HISTORY_LENGTH)
+ -h : URL of the SQ instance (optional: default is $SONAR_HOST)
+ -u : username to authentication on the SQ instance (optional: default is $SONAR_USER)
+ -p : password to authentication on the SQ instance (optional: default is $SONAR_USER)"
}
function checkOptions() {