diff options
author | William Carroll <wpcarro@gmail.com> | 2018-07-18T23·53-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | a86c2ddece8fde8a42f1e6031b189d1865b9b211 (patch) | |
tree | 77c56fd69f574b697e831fd8c062e7672e342cf2 /install.sh | |
parent | e8ca641075b0acfab44fd424f08ab6fa6f630495 (diff) |
Prefer stow over hand-rolled solution
After discovering GNU stow on Nix IRC, refactored install and setup scripts to consume it. Code is vastly simplified as a result.
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh index ed2b80fcfc57..d8233b3bf185 100644 --- a/install.sh +++ b/install.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env zsh +#!/usr/bin/env bash -source "${DOTFILES}/configs/setup" -ln -s "${DOTFILES}/emacs.d" "${HOME}/.emacs.d" +source "$HOME/dotfiles/configs/setup" +ln -s "$DOTFILES/emacs.d" "$HOME/.emacs.d" |