From 637a1f61c864bca6fb14103fce78456173368dc0 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 7 Mar 2016 15:37:21 -0800 Subject: [PATCH] Make sure that fish functions dir is created --- recipes/default/fisherman | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/default/fisherman b/recipes/default/fisherman index 21636ac..c3ed031 100644 --- a/recipes/default/fisherman +++ b/recipes/default/fisherman @@ -11,6 +11,7 @@ add_line "source_config paths" $XDG_CONFIG_HOME/fish/config.fish add_line "source_config alias" $XDG_CONFIG_HOME/fish/config.fish # Link functions +mkdir -p $XDG_CONFIG_HOME/fish/functions for func in ${DEFAULT_ASSETS_PATH}/fish/functions/*.fish; do try_link "$func" $XDG_CONFIG_HOME/fish/functions/$(basename $func) done