選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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