dotfiles/envupdate.sh

16 lines
212 B
Bash
Raw Normal View History

2012-04-04 22:42:24 +00:00
#!/usr/bin/env bash
# Small script to update my env. Too lazy to write this into my python setup script
# A die function as always
die() {
printf '%s\n' "$@" >&2
exit 1
}
cd ~/dev/dotfiles
git pull
2012-05-01 17:26:58 +00:00
exec zsh
2012-03-29 15:16:14 +00:00