fisher/functions/__fisher_plugin_unlink.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

5 lines
96 B
Fish

function __fisher_plugin_unlink -a name file
command rm -f $file
functions -e $name
end