completions/pkg: Only exit for Solaris, not everything-but-FreeBSD

In e8b6705067 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:
Fabian Homborg 2021-01-04 17:24:36 +01:00
parent 7c704ce545
commit 0507b046ef

View File

@ -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