diff --git a/install.sh b/install.sh index 69ecc68..642d3c7 100755 --- a/install.sh +++ b/install.sh @@ -15,12 +15,10 @@ stow -t ~ tridactyl stow -t ~ vim stow -t ~ zsh -if ! [ -e ~/scripts ]; then - # Only create the symlink when the directory doesn't exist - mkdir ~/scripts - # Scripts must be in there own directory - stow -t ~/scripts scripts/ -fi +# Only create the symlink when the directory doesn't exist +mkdir -p ~/.scripts +# Scripts must be in their own directory +stow -t ~/.scripts scripts/ # Common shell files stow -t ~ shell/ diff --git a/shell/.profile b/shell/.profile index 4050165..f80a235 100644 --- a/shell/.profile +++ b/shell/.profile @@ -1,5 +1,5 @@ # Add our scripts to the path -export PATH="$HOME/scripts:$PATH" +export PATH="$HOME/.scripts:$PATH" # Export our favorite editor export EDITOR=vim