mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-03 20:56:43 +08:00
completions/pkg: Only exit for Solaris, not everything-but-FreeBSD
In e8b67050679da41128fd8024420cfb9536acf78d this was made to exit if not on FreeBSD because Solaris has a tool called "pkg" that apparently "isn't worth supporting". Since at least DragonflyBSD also uses FreeBSD's pkg thing, let's turn that check around.
This commit is contained in:
parent
7c704ce545
commit
0507b046ef
@ -1,6 +1,8 @@
|
||||
# Completions for pkgng package manager
|
||||
|
||||
if uname | not string match -q FreeBSD
|
||||
# Solaris has a thing called "pkg", it works quite differently,
|
||||
# and spews errors when called like this.
|
||||
if uname | string match -q SunOS
|
||||
exit
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user