mirror of https://github.com/bjeanes/dotfiles.git
5 lines
144 B
Fish
5 lines
144 B
Fish
|
function clean_rake_cache -d "Clean the rake autocomplete cache"
|
||
|
for a in /tmp/rake_completion_cache_for_$USER/*
|
||
|
rm "$a"
|
||
|
end
|
||
|
end
|