tools/link.sh: fix an incorrect variable

fix ${desg} ->  ${dest}
This commit is contained in:
simbit18 2024-01-08 16:24:48 +01:00 committed by Alan Carvalho de Assis
parent dd1365ef85
commit 8b0bc64903

View File

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