fix install script

This commit is contained in:
Johannes Knopp
2024-12-19 13:05:59 +01:00
parent c748246e38
commit 8527fddb7a

View File

@ -8,8 +8,9 @@ create_symlink() {
local source=$1
local target=$2
if [ -ne "$target" ]; then
if [ ! -e "$target" ]; then
ln -s "$source" "$target"
echo "Added symlink $source -> $target"
fi
}