mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Don't break when there are no files in custom/
This commit is contained in:
parent
7c3d12c7de
commit
903206abf4
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ for plugin ($plugins); do
|
|||
done
|
||||
|
||||
# Load all of your custom configurations from custom/
|
||||
for config_file ($ZSH/custom/*.zsh) source $config_file
|
||||
for config_file ($(find $ZSH/custom -iname \*.zsh)) source $config_file
|
||||
|
||||
# Load the theme
|
||||
# Check for updates on initial load...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue