mirror of
https://gitlab.com/Merith-TK/vanillia-modpack.git
synced 2025-07-01 11:06:58 +01:00
update modpack for modrinth
This commit is contained in:
parent
ae12549f92
commit
7834e33c68
30 changed files with 91 additions and 1478 deletions
27
Makefile
27
Makefile
|
@ -16,35 +16,40 @@ default:
|
|||
@echo ""
|
||||
|
||||
curseforge:
|
||||
-mkdir .build
|
||||
@echo "Making Curseforge pack"
|
||||
packwiz curseforge export --pack-file .minecraft/pack.toml -o ../vanillia-curseforge.zip
|
||||
7z d ../vanillia-curseforge.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
|
||||
packwiz curseforge export --pack-file .minecraft/pack.toml -o .build/vanillia-curseforge.zip
|
||||
7z d .build/vanillia-curseforge.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
|
||||
|
||||
modrinth:
|
||||
-mkdir .build
|
||||
@echo "Making Modrinth pack"
|
||||
packwiz modrinth export --pack-file .minecraft/pack.toml -o ../vanillia-modrinth.zip
|
||||
7z d ../vanillia-modrinth.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
|
||||
packwiz modrinth export --pack-file .minecraft/pack.toml -o .build/vanillia-modrinth.zip
|
||||
7z d .build/vanillia-modrinth.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
|
||||
|
||||
multimc:
|
||||
-mkdir .build
|
||||
@echo "Making MultiMC pack"
|
||||
7z d ../vanillia-multimc.zip ./* -r
|
||||
7z d ../vanillia-multimc.zip ./.minecraft -r
|
||||
7z a ../vanillia-multimc.zip ./* -r
|
||||
7z a ../vanillia-multimc.zip ./.minecraft -r
|
||||
7z d ../vanillia-multimc.zip ./.minecraft/mods ./.minecraft/pack.toml ./.minecraft/index.toml -r
|
||||
7z d .build/vanillia-multimc.zip ./* -r
|
||||
7z d .build/vanillia-multimc.zip ./.minecraft -r
|
||||
7z a .build/vanillia-multimc.zip ./* -r
|
||||
7z a .build/vanillia-multimc.zip ./.minecraft -r
|
||||
7z d .build/vanillia-multimc.zip ./.minecraft/mods ./.minecraft/pack.toml ./.minecraft/index.toml -r
|
||||
|
||||
technic:
|
||||
-mkdir .build
|
||||
@echo "Making Technic pack"
|
||||
-rm -rf .technic
|
||||
-cp -r .minecraft .technic
|
||||
cp vanillia_icon.png .technic/icon.png
|
||||
cd .technic && java -jar ../.minecraft/packwiz-installer-bootstrap.jar https://gitlab.com/Merith-TK/vanillia-modpack/-/raw/main/.minecraft/pack.toml && cd ..
|
||||
-rm -rf .technic/packwiz* .technic/index.toml .technic/pack.toml .technic/mods/*.toml
|
||||
7z d ../vanillia-technic.zip ./* ./.* -r
|
||||
7z a ../vanillia-technic.zip ./.technic/* -r
|
||||
7z d .build/vanillia-technic.zip ./* ./.* -r
|
||||
7z a .build/vanillia-technic.zip ./.technic/* -r
|
||||
|
||||
clean:
|
||||
-rm -rf .technic
|
||||
-rm -rf .build
|
||||
-git gc --aggressive --prune
|
||||
|
||||
all: curseforge modrinth multimc technic clean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue