modeco80
ddd3483620
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
10 lines
188 B
Bash
Executable file
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
|