Fix comments

This commit is contained in:
Bart
2025-11-07 11:04:23 +00:00
parent 54a19a0e8d
commit 9184b7274c
2 changed files with 5 additions and 5 deletions

View File

@@ -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:

View File

@@ -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 <repository directory>
if [ "$#" -ne 1 ]; then