blob: 7913f8fec9a1b01da31ea76be91c4459ce7136f1 (
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
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/bash
set -euo pipefail
DEFAULT_EDITION="oss"
EDITIONS="oss"
function toLower() {
echo "$1" | tr '[:upper:]' '[:lower:]'
}
function 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
}
function distributionDirOf() {
local edition="$1"
if [ "$edition" = "oss" ]; then
echo "sonar-application/build/distributions/"
else
echo "unsupported edition $edition"
exit 1
fi
}
function baseFileNameOf() {
local edition="$1"
if [ "$edition" = "oss" ]; then
echo "sonar-application"
else
echo "unsupported edition $edition"
exit 1
fi
}
function targetDirOf() {
local edition="$1"
if [ "$edition" = "oss" ]; then
echo "sonarqube-oss"
else
echo "unsupported edition $edition"
exit 1
fi
}
|