From dbd04352fa1eb90829c065aa3bbc93c1b8b8c54a Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Tue, 1 Mar 2016 18:19:00 +0900 Subject: [PATCH] Remove debug from __fisher_deps_install. --- functions/__fisher_deps_install.fish | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/__fisher_deps_install.fish b/functions/__fisher_deps_install.fish index 4bc22a9..65f2cce 100644 --- a/functions/__fisher_deps_install.fish +++ b/functions/__fisher_deps_install.fish @@ -1,7 +1,6 @@ function __fisher_deps_install -a path for file in $path/{fishfile,bundle} if test -s $file - debug "Install deps %s" "$file" fisher_install < $file | sed -En 's/^.+([0-9]+) plugin\/s.*/\1/p' end end | awk '{ n = n + $0 } END { print n ? n : 0 }'