mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-06 03:10:35 +01:00
5 lines
129 B
Bash
5 lines
129 B
Bash
# If pkgx is not found, don't do the rest of the script
|
|
if (( ! $+commands[pkgx] )); then
|
|
return
|
|
fi
|
|
source <(pkgx --shellcode)
|