-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup_mirrors.sh
More file actions
executable file
·38 lines (22 loc) · 1.1 KB
/
setup_mirrors.sh
File metadata and controls
executable file
·38 lines (22 loc) · 1.1 KB
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
#!/bin/bash
cd /home/fg
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/fgms/fgtracker fgtracker
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/fgms/src fgms
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/flightgear flightgear
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/simgear simgear
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/fgmeta fgmeta
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/fgrun fgrun
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/openradar openradar
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/terragear terragear
echo "-----------------------------------"
git clone --mirror https://git.code.sf.net/p/flightgear/sceneryweb sceneryweb
echo "-----------------------------------"
echo "Done"