mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-26 18:31:07 +08:00
67c07cb6f6
As #115 migrated list functions, after updating Oh My Fish code the omf.list_installed_packages gets removed, but is still being used by the update code. This commit fixes it by providing a wrapper function.
6 lines
164 B
Fish
6 lines
164 B
Fish
# Backwards-compatible wrapper function
|
|
# TODO: Remove it after 2015, December 13
|
|
function omf.list_installed_packages
|
|
omf.packages.list --installed --plugin
|
|
end
|