mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
More verbose and safer has jobs check.
This commit is contained in:
parent
d37f0ad706
commit
29853bcc2d
@ -53,7 +53,7 @@ function fisher_update -d "Update plugins"
|
||||
printf "fisher: I couldn't update Fisherman.\n\n" > $stderr
|
||||
return 1
|
||||
end
|
||||
|
||||
|
||||
debug "Update Fisherman ok"
|
||||
|
||||
printf "Aye! Fisherman %s updated (%0.fs)\n" (
|
||||
@ -106,7 +106,11 @@ function fisher_update -d "Update plugins"
|
||||
end
|
||||
end
|
||||
|
||||
while jobs | grep . -q
|
||||
while true
|
||||
set -l has_jobs (jobs)
|
||||
if test -z "$has_jobs"
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
for plugin in $fisher_updated_plugins
|
||||
|
Loading…
Reference in New Issue
Block a user