-
Notifications
You must be signed in to change notification settings - Fork 1
/
clone_deps.sh
39 lines (35 loc) · 1.4 KB
/
clone_deps.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
useSsh=1
read -p "Are you 5cript / Use SSH?[y/N] " -n 1 -r
echo # (optional) move to a new line
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
useSsh=0
fi
if [[ $useSsh == 0 ]]; then
git clone https://github.com/5cript/tab-complete.git
git clone https://github.com/5cript/attender.git
git clone https://github.com/5cript/automata.git
git clone https://github.com/5cript/tab-complete.git
git clone https://github.com/5cript/SimpleJSON.git
git clone https://github.com/5cript/special-paths.git
git clone https://github.com/5cript/debugger-interface.git
git clone https://github.com/5cript/mplex.git
git clone https://github.com/5cript/twisted-spirit.git
else
git clone [email protected]:5cript/tab-complete.git
git clone [email protected]:5cript/attender.git
git clone [email protected]:5cript/automata.git
git clone [email protected]:5cript/tab-complete.git
git clone [email protected]:5cript/SimpleJSON.git
git clone [email protected]:5cript/special-paths.git
git clone [email protected]:5cript/debugger-interface.git
git clone [email protected]:5cript/mplex.git
git clone [email protected]:5cript/twisted-spirit.git
fi
# Always HTTPS
git clone https://github.com/ThomasMonkman/filewatch.git
git clone https://github.com/ThePhD/sol2.git
git clone https://github.com/lldb-tools/lldb-mi.git
git clone https://gitlab.com/eidheim/tiny-process-library.git
git clone https://github.com/5cript/hash-library.git
git clone https://github.com/nodejs/node.git