mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-12 20:31:00 +01:00
6 lines
129 B
Bash
6 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)
|