SAPIServer/speech2/third_party/boost/bump_version.sh
modeco80 ddd3483620 add boost asio to speech2
currently the main program is just some stackful coro example stuff that i used just to test

i'll add beast too in a sec but just. hang on
2024-07-20 06:37:09 -04:00

10 lines
188 B
Bash
Executable file

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