From 9184b7274c002e5aae0ac974395c4eb801046b2b Mon Sep 17 00:00:00 2001 From: Bart <11445373+bthomee@users.noreply.github.com> Date: Fri, 7 Nov 2025 11:04:23 +0000 Subject: [PATCH] Fix comments --- .github/scripts/rename/README.md | 4 ++-- .github/scripts/rename/binary.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/scripts/rename/README.md b/.github/scripts/rename/README.md index f16ea3fccb..836f3606ba 100644 --- a/.github/scripts/rename/README.md +++ b/.github/scripts/rename/README.md @@ -27,8 +27,8 @@ run from the repository root. `xrpl` and `xrpld`, respectively. The name of the binary will remain as-is, and will only be renamed to `xrpld` by a later script. 4. `.github/scripts/rename/binary.sh`: This script will rename the binary from - `rippled` to `xrpld`, and create a symlink named `rippled` that points to the - `xrpld` binary. + `rippled` to `xrpld`, and reverses the symlink so that `rippled` points to + the `xrpld` binary. You can run all these scripts from the repository root as follows: diff --git a/.github/scripts/rename/binary.sh b/.github/scripts/rename/binary.sh index 3152f4abc6..19d8505ba4 100755 --- a/.github/scripts/rename/binary.sh +++ b/.github/scripts/rename/binary.sh @@ -13,9 +13,9 @@ if [[ "${OSTYPE}" == 'darwin'* ]]; then SED_COMMAND=gsed fi -# This script changes the binary name from `rippled` to `xrpld`, and reverse the -# symlink that currently points from `xrpld` to `rippled` so that it points from -# `rippled` to `xrpld` instead. +# This script changes the binary name from `rippled` to `xrpld`, and reverses +# the symlink that currently points from `xrpld` to `rippled` so that it points +# from `rippled` to `xrpld` instead. # Usage: .github/scripts/rename/binary.sh if [ "$#" -ne 1 ]; then