Skip to content

Commit

Permalink
chore: Default validator-keys-tool to master branch: (XRPLF#4943)
Browse files Browse the repository at this point in the history
* master is the default branch for that project. There's no point in
  using develop.
  • Loading branch information
ximinez authored and sophiax851 committed Jun 12, 2024
1 parent ba20062 commit e753fd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Builds/CMake/RippledValidatorKeys.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ option (validator_keys "Enables building of validator-keys-tool as a separate ta

if (validator_keys)
git_branch (current_branch)
# default to tracking VK develop branch unless we are on master/release
if (NOT (current_branch STREQUAL "master" OR current_branch STREQUAL "release"))
set (current_branch "develop")
# default to tracking VK master branch unless we are on release
if (NOT (current_branch STREQUAL "release"))
set (current_branch "master")
endif ()
message (STATUS "tracking ValidatorKeys branch: ${current_branch}")

Expand Down

0 comments on commit e753fd5

Please sign in to comment.