forked from skywardmc/additive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
30 lines (30 loc) · 788 Bytes
/
makefile
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
update-packwiz:
go install github.com/packwiz/packwiz@latest
go install github.com/Merith-TK/packwiz-wrapper/cmd/pw@main
clear
@echo "Packwiz has been Updated"
export-fabric:
-mkdir -p .build/fabric/
cd versions/fabric && pw batch mr export
-mv versions/fabric/*/*.mrpack .build/fabric
export-quilt:
-mkdir -p .build/quilt/
cd versions/quilt && pw batch mr export
-mv versions/quilt/*/*.mrpack .build/quilt
update-fabric:
cd versions/fabric && pw batch update --all
update-quilt:
cd versions/quilt && pw batch update --all
refresh-fabric:
cd versions/fabric && pw batch refresh
refresh-quilt:
cd versions/quilt && pw batch refresh
refresh:
make refresh-fabric
make refresh-quilt
update:
make update-fabric
make update-quilt
export:
make export-fabric
make export-quilt