forked from JoshBlake/RGBDToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloneaddons.sh
executable file
·53 lines (45 loc) · 1.17 KB
/
cloneaddons.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# Dependencies for DepthKit
#make sure you are in the DepthKit project when you run this script
cd ../../addons
#passing no arguments means read only
if [ -z $1 ]; then
PREFIX="git clone https://github.com/"
echo "Cloning read-only"
else
PREFIX="git clone [email protected]:"
echo "Cloning writable"
fi
${PREFIX}Flightphase/ofxGameCamera
${PREFIX}Flightphase/ofxRange
${PREFIX}Flightphase/ofxTween
${PREFIX}Flightphase/ofxMSAInteractiveObject
${PREFIX}Flightphase/ofxTextInputField
${PREFIX}obviousjim/ofxDepthKit
${PREFIX}obviousjim/ofxCv
${PREFIX}obviousjim/ofxKinectCommonBridge
${PREFIX}obviousjim/ofxOpenNI
${PREFIX}obviousjim/ofxMSATimer
${PREFIX}YCAMInterlab/ofxTimecode
${PREFIX}YCAMInterlab/ofxTimeline
${PREFIX}obviousjim/ofxObjLoader
cd ofxTimeline
git fetch
git checkout -b develop origin/develop --track
git pull origin develop
cd ..
cd ofxTextInputField
git fetch
git checkout -b develop origin/develop --track
git pull origin develop
cd ..
cd ofxDepthKit
git fetch
git checkout -b develop origin/develop --track
git pull origin develop
cd ..
cd ofxGameCamera
git fetch
git checkout -b develop origin/develop --track
git pull origin develop
cd ..