From 6bbd3cd9e086408ac29c19a4a27f01bc0755df27 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Thu, 4 Apr 2024 10:40:35 -0400 Subject: [PATCH] chore: Default validator-keys-tool to master branch: (#4943) * master is the default branch for that project. There's no point in using develop. --- Builds/CMake/RippledValidatorKeys.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Builds/CMake/RippledValidatorKeys.cmake b/Builds/CMake/RippledValidatorKeys.cmake index dfd56f9f1..b6760ca49 100644 --- a/Builds/CMake/RippledValidatorKeys.cmake +++ b/Builds/CMake/RippledValidatorKeys.cmake @@ -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}")