From 693b64a315de38b66015dc811c6ef53a6090bbde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Wed, 30 Oct 2024 23:48:47 -0400 Subject: [PATCH] install-helpers.sh: fix realpath -> readlink --- zfsbootmenu/install-helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfsbootmenu/install-helpers.sh b/zfsbootmenu/install-helpers.sh index b3cb3cc08..ff43e303a 100644 --- a/zfsbootmenu/install-helpers.sh +++ b/zfsbootmenu/install-helpers.sh @@ -192,7 +192,7 @@ zbm_install_symlink() { # Attempt to install the target of the symlink local rpath - if rpath="$(realpath -f "${1}")"; then + if rpath="$(readlink -f "${1}")"; then if [ -e "${rpath}" ] && [ ! -L "${rpath}" ]; then zbm_install_file "${rpath}" "$(dirname "${src}")/${dest}" || return 1 fi