fish 2.5 more strict handling of the `test` builtin helped identify
the bug.
This commit is contained in:
Jorge Bucaran 2017-02-04 01:56:19 +09:00
parent 92716f334b
commit 9d5bfca6c2
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -30,7 +30,7 @@ function $fisher_cmd_name -d "fish plugin manager"
return 1
end
set -g fisher_version "2.11.0"
set -g fisher_version "2.12.0"
set -g fisher_spinners ⠋ ⠙ ⠹ ⠸ ⠼ ⠴ ⠦ ⠧ ⠇ ⠏
set -g __fisher_stdout /dev/stdout
set -g __fisher_stderr /dev/stderr
@ -257,7 +257,7 @@ function $fisher_cmd_name -d "fish plugin manager"
__fisher_log info "Done in &"(__fisher_get_epoch_in_ms $elapsed | __fisher_humanize_duration)"&" "$__fisher_stderr"
case ls
if test "$argv" -ge 0 -o "$argv" = -
if test (count "$argv") -ge 0 -o "$argv" = -
if isatty stdout
__fisher_list | column -c$argv
else