fisher/functions/__fisher_plugin_link.fish
Daniele Sluijters a11bbee41d Use command when calling non-builtins
By using `command` we ensure that we always end up calling the external
binary and don't get caught by user aliasses, functions or other
magic.

Closes #79
2016-02-07 18:48:42 +01:00

4 lines
99 B
Fish

function __fisher_plugin_link -a options source target
command ln $options $source $target
end