chore(dotfiles): allow setting the dotfiles path
Allow overriding the dotfiles directory using the `DOTFILES_DIR` variable.
This commit is contained in:
parent
1c5ce40d07
commit
a1554f5607
|
@ -3,7 +3,7 @@
|
|||
set -e
|
||||
|
||||
CONFIG_DIR="$HOME/.config/dotfiles"
|
||||
DOTFILES_DIR="$HOME/.dotfiles"
|
||||
DOTFILES_DIR="${DOTFILES_DIR:-$HOME/.dotfiles}"
|
||||
PATH="${PATH}:${HOME}/.local/bin"
|
||||
|
||||
clone_or_update_dotfiles() {
|
||||
|
|
Loading…
Reference in a new issue