mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-06-19 05:12:49 +02:00
fix(macports): correct inverted logic (#13812)
This commit is contained in:
parent
ffa8487bc7
commit
d708ca9d99
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ alias puo="sudo port upgrade outdated"
|
|||
alias pup="sudo port selfupdate && sudo port upgrade outdated"
|
||||
|
||||
port-livecheck-maintainer() {
|
||||
(( ${+commands[port]} == 0 )) || {
|
||||
(( ${+commands[port]} )) || {
|
||||
print -- "port: not found" >&2
|
||||
return 1
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue