convenience script to clone or update all dependencies
This commit is contained in:
parent
5bca9439d9
commit
3e4f7cd947
16
update.sh
Executable file
16
update.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
GIT_USER=alcexhim
|
||||
GIT_URL=git@github.com:$GIT_USER
|
||||
GIT_PROJECTS="MBS.Audio MBS.Framework MBS.Framework.UserInterface MBS.Framework.Rendering UniversalEditor"
|
||||
|
||||
for name in $GIT_PROJECTS; do
|
||||
|
||||
if [ -d ../$name ]; then
|
||||
cd ../$name && git pull
|
||||
else
|
||||
cd ../ && git clone $GIT_URL/$name
|
||||
cd $name
|
||||
fi
|
||||
|
||||
done
|
||||
Loading…
x
Reference in New Issue
Block a user