zsh:mvln(): Actually use $flags variable

Fix 5359298bed ("zsh:mvln(): Implement relative flag `-r`"), that
forgot to actually use $flags after adding it.
This commit is contained in:
2024-01-05 16:27:23 +01:00
parent c9938374c2
commit 30ef936fbd

View File

@@ -379,7 +379,7 @@ mvln() {
fi
# NOTE: `ln` does not like trailing slashes on the last argument
ln -s "$target" "${file%/}"
ln "$flags" "$target" "${file%/}"
done
return $reg