Fix a bug in the dependency installer counter.

This commit is contained in:
Jorge Bucaran 2016-03-25 03:22:31 +09:00
parent 4d23cf7195
commit a205256ce8
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
function __fisher_deps_install -a path
for file in $path/{fishfile,bundle}
if test -s $file
fisher_install < $file | sed -En 's/^.+([0-9]+) plugin\/s.*/\1/p'
fisher_install < $file | sed -En 's|^([0-9]+) plugin/s installed.*|\1|p'
end
end | awk '{ n = n + $0 } END { print n ? n : 0 }'
end

View file

@ -13,7 +13,7 @@ function -S setup
set count (math $count + 1)
end
echo "Aye! $count plugin/s installed."
echo "$count plugin/s installed."
end
end