mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-01 21:40:18 +00:00
a11bbee41d
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
5 lines
96 B
Fish
5 lines
96 B
Fish
function __fisher_plugin_unlink -a name file
|
|
command rm -f $file
|
|
functions -e $name
|
|
end
|