From 79a82c9c55a94b02a052cc42ebf4d488afd37f8a Mon Sep 17 00:00:00 2001 From: Bart <11445373+bthomee@users.noreply.github.com> Date: Tue, 2 Dec 2025 14:58:27 -0500 Subject: [PATCH] Update script to exclude support for legacy config file name --- .github/scripts/rename/config.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/scripts/rename/config.sh b/.github/scripts/rename/config.sh index 6404573c15..d701d00e5c 100755 --- a/.github/scripts/rename/config.sh +++ b/.github/scripts/rename/config.sh @@ -55,5 +55,8 @@ for DIRECTORY in "${DIRECTORIES[@]}"; do done done +# Restore the old config file name in the code that maintains support for now. +${SED_COMMAND} -i 's/configLegacyName = "xrpld.cfg"/configLegacyName = "rippled.cfg"/g' src/xrpld/core/detail/Config.cpp + popd echo "Renaming complete."