bootstrap/update.sh

14 lines
158 B
Bash
Raw Normal View History

2015-10-01 16:52:15 -04:00
#!/bin/bash
echo "Updating .dotfiles"
git pull
for dir in */.git
do
dir=$(sed s/\.git// <<< "$dir")
echo "Updating $dir"
cd "$dir"
git pull
cd ..
done