Skip to content

Commit

Permalink
Merge pull request #998 from nextcloud/bump-2.13
Browse files Browse the repository at this point in the history
Bump for stable-2.13
  • Loading branch information
AlvaroBrey committed Nov 17, 2022
2 parents b428f94 + b6f0340 commit 633266d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/analysis/analysis-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#6: DRONE_BUILD_NUMBER
#7: PULL_REQUEST_NUMBER

stableBranch="master"
stableBranch="stable-2.13"
repository="library"

ruby scripts/analysis/findbugs-up.rb $1 $2 $3
Expand Down
4 changes: 2 additions & 2 deletions scripts/analysis/getBranchName.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# $1: username, $2: password/token, $3: pull request number

if [ -z $3 ] ; then
echo "master";
echo "stable-2.13";
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.13"' | cut -d"\"" -f4
fi

0 comments on commit 633266d

Please sign in to comment.