Fixes a regression in update process added in #115

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.
This commit is contained in:
Derek Stavis 2015-10-13 10:10:16 -03:00
parent 9539b50da2
commit 67c07cb6f6

View File

@ -0,0 +1,5 @@
# Backwards-compatible wrapper function
# TODO: Remove it after 2015, December 13
function omf.list_installed_packages
omf.packages.list --installed --plugin
end