dotfiles/bin/dotupdate

10 lines
145 B
Bash
Executable file

#!/bin/bash
dotupdate () {
pushd ~/.config/dotfiles &>/dev/null
echo "Updating Dotfiles"
git pull
popd &>/dev/null
}
dotupdate