aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/editions.sh
blob: 7ccad91acd5ad9909607c2cd050d277af52a8ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env bash

set -euo pipefail

DEFAULT_EDITION="oss"
EDITIONS="oss"

toLower() {
  echo "$1" | tr '[:upper:]' '[:lower:]'
}

checkEditionArgument() {
  local editionArg="$1"
  local lowerEditionArg=$(toLower $editionArg)

  if [ "$lowerEditionArg" = "$DEFAULT_EDITION" ]; then
    return
  fi

  for t in $EDITIONS; do
    if [ "$lowerEditionArg" = "$t" ]; then
      return
    fi
  done

  echo "Unsupported edition $editionArg"
  exit 1
}

distributionDirOf() {
  local edition="$1"

  if [ "$edition" = "oss" ]; then
    echo "sonar-application/build/distributions/"
  else
    echo "unsupported edition $edition"
    exit 1
  fi
}

baseFileNameOf() {
  local edition="$1"

  if [ "$edition" = "oss" ]; then
    echo "sonar-application"
  else
    echo "unsupported edition $edition"
    exit 1
  fi
}