mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Test for Atom Package Manager now passes correctly
Move to `string match` syntax from `grep` caused test to see if the Atom Package Manager is installed to always fail. This appears to fix the issue (tested on fish 2.3.0 with apm 1.6.0).
This commit is contained in:
parent
8fba36b242
commit
475439fa0b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ function __fish_apm_list_packages
|
||||||
apm list -b
|
apm list -b
|
||||||
end
|
end
|
||||||
|
|
||||||
if apm -h ^| string match -q "Atom Package Manager*"
|
if apm -h ^| string match -q "*Atom Package Manager*"
|
||||||
# Completions for Atom Package Manager
|
# Completions for Atom Package Manager
|
||||||
|
|
||||||
##################
|
##################
|
||||||
|
|
Loading…
Reference in a new issue