Fix syntax error in __fish_print_port_packages.fish

Fixes #12063 

NOTE: I'm not fish expert, please suggest a better way/place to fix this
This commit is contained in:
Tair Sabirgaliev
2025-11-14 22:21:20 +05:00
committed by Fabian Boehm
parent 58cc0ad760
commit 5c2073135e

View File

@@ -4,7 +4,6 @@ function __fish_print_port_packages
__fish_cached -t 250 -k port '
printf "all\ncurrent\nactive\ninactive\ninstalled\nuninstalled\noutdated\n"
port echo all | awk \'{$1=$1};1\'
'
port echo all | awk \'{$1=$1};1\''
return 0
end