diff --git a/.stow-ignore-local b/.stow-ignore-local index 1e815b5..caca59d 100644 --- a/.stow-ignore-local +++ b/.stow-ignore-local @@ -25,3 +25,4 @@ _darcs install.py \.gitmodules scripts +stow diff --git a/stow b/stow new file mode 100755 index 0000000..83b022b --- /dev/null +++ b/stow @@ -0,0 +1,10 @@ +#!/bin/env bash +set -e +if [ -f $HOME/.bashrc ]; then + echo 'Removing existing bashrc...' + mv $HOME/.bashrc $HOME/.bashrc.pre-stow +fi; + +echo 'All file conflicts resolved, stowing...' +stow . +echo 'Finished stowing.'