-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupMysticWorkspace.bat
44 lines (39 loc) · 1.06 KB
/
setupMysticWorkspace.bat
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
@echo Cloning repos
git clone https://github.com/MysticMods/MysticalLib.git
git clone https://github.com/MysticMods/MysticalWorld.git
git clone https://github.com/MysticMods/Embers.git
git clone https://github.com/MysticMods/Traverse.git
git clone https://github.com/MysticMods/Firefly.git
@echo skipping git clone https://github.com/MysticMods/Glimmering.git
git clone https://github.com/duely/dwmh.git
git clone https://github.com/AranaiRa/ArcaneArchives.git
git clone https://github.com/MysticMods/GadgetryCore.git
git clone https://github.com/MysticMods/MysticalMachinery.git
git clone https://github.com/MysticMods/EmsFarming.git
git clone https://github.com/MysticMods/Roots.git
@echo Switching to 1.14.4 branches
cd MysticalLib
git checkout 1.14
cd ../
cd MysticalWorld
git checkout 1.14
cd ../
cd Embers
git checkout 1.14
cd ../
cd dwmh
git checkout 1.14
cd ..
cd ArcaneArchives
git checkout 1.14
cd ..
cd GadgetryCore
git checkout 1.14
cd ../
cd Roots
git checkout 1.14
cd ../
@echo genIntellijRuns for the WHOLE workspace
cd workspace
./gradlew genIntellijRuns
@echo Done!