From 67c07cb6f66cac12105bc9fc9351ac09772e9f7e Mon Sep 17 00:00:00 2001 From: Derek Stavis Date: Tue, 13 Oct 2015 10:10:16 -0300 Subject: [PATCH] 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. --- pkg/omf/cli/omf.list_installed_packages.fish | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pkg/omf/cli/omf.list_installed_packages.fish diff --git a/pkg/omf/cli/omf.list_installed_packages.fish b/pkg/omf/cli/omf.list_installed_packages.fish new file mode 100644 index 0000000..a3cc51c --- /dev/null +++ b/pkg/omf/cli/omf.list_installed_packages.fish @@ -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