blob: 04eb5b3f10bab48936e0ba5c71e34289ea59f1cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Shortcut to stop server. It must be already built.
if [[ "$OSTYPE" == "darwin"* ]]; then
OS='macosx-universal-64'
else
OS='linux-x86-64'
fi
sh sonar-application/target/sonarqube-*/bin/$OS/sonar.sh stop
|