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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user