1
0
Fork 0
.dotfiles/stow

10 lines
220 B
Bash
Executable file

#!/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.'