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
|
set -e
|
||||||
|
|
||||||
CONFIG_DIR="$HOME/.config/dotfiles"
|
CONFIG_DIR="$HOME/.config/dotfiles"
|
||||||
DOTFILES_DIR="$HOME/.dotfiles"
|
DOTFILES_DIR="${DOTFILES_DIR:-$HOME/.dotfiles}"
|
||||||
PATH="${PATH}:${HOME}/.local/bin"
|
PATH="${PATH}:${HOME}/.local/bin"
|
||||||
|
|
||||||
clone_or_update_dotfiles() {
|
clone_or_update_dotfiles() {
|
||||||
|
|
Loading…
Reference in a new issue