SSX3LobbyServer/third_party/boost/bump_version.sh

11 lines
178 B
Bash
Raw Permalink Normal View History

#!/bin/bash
# bump all the repositories
for library in $(cat $PWD/list); do
pushd $library >/dev/null 2>&1
# git pull
git fetch
git checkout $1
popd >/dev/null 2>&1
done