From 8b0bc649036ca837d1df2d08a4805a1e6abc9865 Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:24:48 +0100 Subject: [PATCH] tools/link.sh: fix an incorrect variable fix ${desg} -> ${dest} --- tools/link.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/link.sh b/tools/link.sh index 2027b3ac1e..70b2e09193 100755 --- a/tools/link.sh +++ b/tools/link.sh @@ -82,7 +82,7 @@ ln -s "${src}" "${dest}" || \ # Verify that the link was created -if [ -e ${dest} ] && [ -h ${desg} ]; then +if [ -e ${dest} ] && [ -h ${dest} ]; then # The file exists and is a symlink (i.e. the symlink isn't broken) exit 0