From 31e08fa2b225494ce58a2c108624b4e13a4f6d35 Mon Sep 17 00:00:00 2001 From: Klesh Wong Date: Sun, 6 Dec 2020 11:44:36 +0800 Subject: [PATCH] [bugfix] .profile.fish wont be sourced --- cli/fish/functions/source_files.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/fish/functions/source_files.fish b/cli/fish/functions/source_files.fish index 8cf400b..56d4a03 100644 --- a/cli/fish/functions/source_files.fish +++ b/cli/fish/functions/source_files.fish @@ -1,6 +1,6 @@ function source_files for f in $argv - test -e $f && source $f && return + test -e $f && source $f end end