1
0
Fork 0
.dotfiles/stow

11 lines
220 B
Text
Raw Normal View History

2024-07-12 16:36:02 +01:00
#!/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.'