Ensure target paths exist before running stow.
This commit is contained in:
parent
70677bae30
commit
c9531b2c0a
1 changed files with 5 additions and 5 deletions
10
install.sh
10
install.sh
|
|
@ -26,10 +26,10 @@ mkdir -p "${TARGET_DIR}/.ssh"
|
||||||
mkdir -p "${TARGET_DIR}/.config"
|
mkdir -p "${TARGET_DIR}/.config"
|
||||||
|
|
||||||
# Install SSH separately, as it requres a different target.
|
# Install SSH separately, as it requres a different target.
|
||||||
do_stow ssh "${TARGET_DIR}/.ssh"
|
do_stow ssh "${TARGET_DIR}/.ssh" || true
|
||||||
do_stow tmux
|
do_stow tmux || true
|
||||||
do_stow git
|
do_stow git || true
|
||||||
do_stow zsh
|
do_stow zsh || true
|
||||||
do_stow nvim "${TARGET_DIR}/.config"
|
do_stow nvim "${TARGET_DIR}/.config" || true
|
||||||
|
|
||||||
echo "[+] Installed!"
|
echo "[+] Installed!"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue