Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/android-library.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobiasKaminsky <tobias@kaminsky.me>2022-07-12 09:00:29 +0300
committertobiasKaminsky <tobias@kaminsky.me>2022-07-12 09:00:29 +0300
commit24fd594666091b4d6886ac1a1ec59399ab9c85be (patch)
treefba7a3b7652af2285756ca289cc0c89c9f835d1e
parente074d4da3bbb0fde988d77a1317117073e6e42ab (diff)
Branch off stable-2.11rc-2.11.0-012.11.0stable-2.11
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
-rwxr-xr-xscripts/analysis/analysis-wrapper.sh2
-rwxr-xr-xscripts/analysis/getBranchName.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh
index 9fdefcbf..aa40ab60 100755
--- a/scripts/analysis/analysis-wrapper.sh
+++ b/scripts/analysis/analysis-wrapper.sh
@@ -8,7 +8,7 @@
#6: DRONE_BUILD_NUMBER
#7: PULL_REQUEST_NUMBER
-stableBranch="master"
+stableBranch="stable-2.11"
repository="library"
ruby scripts/analysis/findbugs-up.rb $1 $2 $3
diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh
index 45c38cf7..89ea7699 100755
--- a/scripts/analysis/getBranchName.sh
+++ b/scripts/analysis/getBranchName.sh
@@ -3,7 +3,7 @@
# $1: username, $2: password/token, $3: pull request number
if [ -z $3 ] ; then
- echo "master";
+ echo "stable-2.11";
else
- curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4
+ curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"stable-2.11"' | cut -d"\"" -f4
fi