summarylogtreecommitdiffstats
path: root/sonar-scanner.install
blob: 95251000533d032d72a1a8e7db16db248f580196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
    echo 'In order to use sonar-scanner, you have to run the'
    echo 'following commands. It will be done automatically at login.'
    echo
    echo 'export SONAR_SCANNER_HOME="/opt/sonar-scanner"'
    echo 'export PATH="${PATH}:${SONAR_SCANNER_HOME}/bin"'
    echo
    echo 'You also need to configure your sonar host url'
    echo 'in /etc/sonar-scanner/sonar-scanner.properties.'
    echo
    echo 'Please refer to the following documentation:'
    echo 'http://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner'
    echo ''
}