mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
fix autoload when dotfiles relocated
This commit is contained in:
parent
b34f8bcd04
commit
e22a871ede
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# load all shell files
|
# load all shell files
|
||||||
for file in ~/.dotfiles/shell/*; do
|
for file in "$DOTFILES_SHELL_DIR"/*; do
|
||||||
[[ -x $file ]] && source $file
|
[[ -x $file ]] && source "$file"
|
||||||
done
|
done
|
||||||
|
|
||||||
# vim: ft=sh
|
# vim: ft=sh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue