We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c595470 commit ed370f3Copy full SHA for ed370f3
scripts/check-pebble-dep.sh
@@ -17,6 +17,10 @@ BRANCHES=$(git branch -r --format='%(refname)' \
17
18
EXIT_CODE=0
19
for BRANCH in $BRANCHES; do
20
+ if [ "$BRANCH" = "release-24.2" ]; then
21
+ # Skip the release-24.2 branch, which is frozen.
22
+ continue
23
+ fi
24
PEBBLE_BRANCH="crl-$BRANCH"
25
DEP_SHA=$(git show "origin/$BRANCH:go.mod" |
26
grep 'github.com/cockroachdb/pebble' |
0 commit comments