mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-02 20:09:26 +00:00
Check for non-empty files, not just existance
This commit is contained in:
@ -15,7 +15,7 @@ _z_prefixes=(
|
||||
for _z_prefix in "$_z_prefixes[@]"; do
|
||||
_z_sh="${_z_prefix}/etc/profile.d/z.sh"
|
||||
|
||||
if [[ -f "$_z_sh" ]]; then
|
||||
if [[ -s "$_z_sh" ]]; then
|
||||
source "$_z_sh"
|
||||
break
|
||||
fi
|
||||
|
Reference in New Issue
Block a user