From 88ef16ccc74dfd9813855d9e7a85cbb480289875 Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Fri, 15 Sep 2017 08:10:16 +0200 Subject: [PATCH] Fixed migration order on macOS --- lib/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.bash b/lib/helpers.bash index 35014a67..9cf5e3fd 100644 --- a/lib/helpers.bash +++ b/lib/helpers.bash @@ -181,7 +181,7 @@ _bash-it-migrate() { for file_type in "aliases" "plugins" "completion" do - for f in `compgen -G "${BASH_IT}/$file_type/enabled/*.bash"` + for f in `sort <(compgen -G "${BASH_IT}/$file_type/enabled/*.bash")` do typeset ff=$(basename $f)