-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (32 loc) · 879 Bytes
/
Makefile
File metadata and controls
32 lines (32 loc) · 879 Bytes
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
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 packwiz/versions/fabric/ && pw batch mr export
-mv packwiz/versions/fabric/**/*.mrpack .build/fabric
export-quilt:
-mkdir -p .build/quilt/
cd packwiz/versions/quilt && pw batch mr export
-mv packwiz/versions/quilt/**/*.mrpack .build/quilt
update-fabric:
cd packwiz/versions/fabric && pw batch update --all
update-quilt:
cd packwiz/versions/quilt && pw batch update --all
refresh-fabric:
cd packwiz/versions/fabric && pw batch refresh
refresh-quilt:
cd packwiz/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
clean:
@rm -rf .build