summaryrefslogtreecommitdiff
path: root/bundle-update.sh
blob: 5f50a0a28e13840ab4cd4ece84cefb78b248421f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

wd=$(dirname $0)

for i in $(ls $wd/bundle); do
    pushd $wd/bundle/$i
    git pull origin master
    popd > /dev/null
done

cd $wd
git add .
git commit -m "Bundle update `date`"