diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-06-13 09:47:39 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-06-13 20:20:50 +0200 |
commit | 6d00d795cd6b1c0d34d1740ec958c407836c08ce (patch) | |
tree | 605a451e272b34cb3f66a996e0e9c72571975c21 /scripts/editions.sh | |
parent | 6ef18d84cd2f6dfc243b13cc6831a6b4b4f3c62b (diff) | |
download | sonarqube-6d00d795cd6b1c0d34d1740ec958c407836c08ce.tar.gz sonarqube-6d00d795cd6b1c0d34d1740ec958c407836c08ce.zip |
[scripts] drop now useless targetDirOf function in edition.sh
Diffstat (limited to 'scripts/editions.sh')
-rwxr-xr-x | scripts/editions.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/editions.sh b/scripts/editions.sh index 4f001c0617c..7ccad91acd5 100755 --- a/scripts/editions.sh +++ b/scripts/editions.sh @@ -48,14 +48,3 @@ baseFileNameOf() { exit 1 fi } - -targetDirOf() { - local edition="$1" - - if [ "$edition" = "oss" ]; then - echo "sonarqube-oss" - else - echo "unsupported edition $edition" - exit 1 - fi -} |