-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcloneaddons.sh
executable file
·104 lines (91 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/bash
cd ../../addons
echo existing addons
ls -1a
#passing some argument reverts read only
if [ -z $1 ]; then
PREFIX="git clone [email protected]:"
NEWPREFIX="git clone [email protected]:CLOUDS-Interactive-Documentary/"
echo "Cloning writable"
else
PREFIX="git clone https://github.com/"
NEWPREFIX="git clone https://github.com/CLOUDS-Interactive-Documentary/"
echo "Cloning read-only"
fi
${NEWPREFIX}ofxAnimationPrimitives
${NEWPREFIX}ofxAudioDecoder
${NEWPREFIX}ofxAudioFeatures
${NEWPREFIX}ofxAudioUnit
${NEWPREFIX}ofxAutoReloadedShader
${NEWPREFIX}ofxAVFVideoPlayer
${NEWPREFIX}ofxBillboard
${NEWPREFIX}ofxBinaryMesh
${NEWPREFIX}ofxBox2d
${NEWPREFIX}ofxCameraSaveLoad
${NEWPREFIX}ofxCocoaGLView
${NEWPREFIX}ofxColorPalettes
${NEWPREFIX}ofxCrypto
${NEWPREFIX}ofxCv
${NEWPREFIX}ofxDelaunay
${NEWPREFIX}ofxFTGL
${NEWPREFIX}ofxGameCamera
${NEWPREFIX}ofxGenerative
${NEWPREFIX}ofxGpuParticles
${NEWPREFIX}ofxLocalization
${NEWPREFIX}ofxMarchingCubes
${NEWPREFIX}ofxMeshUtils
${NEWPREFIX}ofxMPMFluid
${NEWPREFIX}ofxMSACore
${NEWPREFIX}ofxMSAInteractiveObject
${NEWPREFIX}ofxMSAObjCPointer
${NEWPREFIX}ofxMSAPhysics
${NEWPREFIX}ofxMSATimer
${NEWPREFIX}ofxNearestNeighbour
${NEWPREFIX}ofxObjLoader
${NEWPREFIX}ofxOcean
${NEWPREFIX}ofxOculusDK2
${NEWPREFIX}ofxOpenSteer
cd ofxOpenSteer
git checkout -b feature-64bit --track origin/feature-64bit
git pull origin feature-64bit
cd ..
${NEWPREFIX}ofxPCL
${NEWPREFIX}ofxPostProcessing
cd ofxPostProcessing
git checkout -b develop --track origin/develop
git pull origin develop
cd ..
${NEWPREFIX}ofxPtf
${NEWPREFIX}ofxRange
${NEWPREFIX}ofxReachability
${NEWPREFIX}ofxRegex
${NEWPREFIX}ofxRGBDepth
cd ofxRGBDepth
git checkout -b develop --track origin/develop
git pull origin develop
cd ..
${NEWPREFIX}ofxSimpleSpline
${NEWPREFIX}ofxSimpleSurface
${NEWPREFIX}ofxSQLite
${NEWPREFIX}ofxSSL
${NEWPREFIX}ofxSubtitles
${NEWPREFIX}ofxJSON
${NEWPREFIX}ofxTextInputField
cd ofxTextInputField
git checkout -b develop --track origin/develop
git pull origin develop
cd ..
${NEWPREFIX}ofxTextWriter
${NEWPREFIX}ofxTimecode
${NEWPREFIX}ofxTimeline
cd ofxTimeline
git checkout -b develop --track origin/develop
git pull origin develop
cd ..
${NEWPREFIX}ofxTonic
${NEWPREFIX}ofxTween
${NEWPREFIX}ofxUI
cd ofxUI
git checkout -b 'clouds-64' --track 'origin/clouds-64'
git pull origin 'clouds-64'
cd ..