mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
Fix a bug in the dependency installer counter.
This commit is contained in:
parent
d4c8e2789f
commit
2b43beb324
@ -1,7 +1,7 @@
|
|||||||
function __fisher_deps_install -a path
|
function __fisher_deps_install -a path
|
||||||
for file in $path/{fishfile,bundle}
|
for file in $path/{fishfile,bundle}
|
||||||
if test -s $file
|
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
|
||||||
end | awk '{ n = n + $0 } END { print n ? n : 0 }'
|
end | awk '{ n = n + $0 } END { print n ? n : 0 }'
|
||||||
end
|
end
|
||||||
|
@ -13,7 +13,7 @@ function -S setup
|
|||||||
set count (math $count + 1)
|
set count (math $count + 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
echo "Aye! $count plugin/s installed."
|
echo "$count plugin/s installed."
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user