mirror of
https://gitlab.com/Merith-TK/vanillia-modpack.git
synced 2024-11-22 22:29:30 +00:00
update version in pack.toml
This commit is contained in:
parent
800edc4ce1
commit
0346721d75
2 changed files with 12 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
name = "Vanillia"
|
name = "Vanillia"
|
||||||
author = "Merith.TK, Daedreus"
|
author = "Merith.TK, Daedreus"
|
||||||
version = "1.19.3-1.3.1"
|
version = "1.4.0-1.19.4"
|
||||||
pack-format = "packwiz:1.1.0"
|
pack-format = "packwiz:1.1.0"
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
|
12
Makefile
12
Makefile
|
@ -49,13 +49,23 @@ technic: refresh
|
||||||
7z d .build/${PACKNAME}-technic.zip ./* ./.* -r
|
7z d .build/${PACKNAME}-technic.zip ./* ./.* -r
|
||||||
7z a .build/${PACKNAME}-technic.zip ./.technic/* -r
|
7z a .build/${PACKNAME}-technic.zip ./.technic/* -r
|
||||||
|
|
||||||
|
server: refresh
|
||||||
|
-mkdir .build
|
||||||
|
@echo "Making Server pack"
|
||||||
|
-rm -rf .server
|
||||||
|
-cp -r .minecraft .server
|
||||||
|
cp ${PACKNAME}_icon.png .technic/icon.png
|
||||||
|
cd .server && java -jar ../.minecraft/packwiz-installer-bootstrap.jar -s server ../.minecraft/pack.toml && cd ..
|
||||||
|
7z d .build/${PACKNAME}-server.zip ./* ./.* -r
|
||||||
|
7z a .build/${PACKNAME}-server.zip ./.server/* -r
|
||||||
|
|
||||||
preClean: refresh
|
preClean: refresh
|
||||||
-rm -rf .build
|
-rm -rf .build
|
||||||
postClean: refresh
|
postClean: refresh
|
||||||
-rm -rf .technic
|
-rm -rf .technic
|
||||||
-git gc --aggressive --prune
|
-git gc --aggressive --prune
|
||||||
|
|
||||||
all: preClean curseforge modrinth multimc technic postClean
|
all: preClean curseforge modrinth multimc technic server postClean
|
||||||
|
|
||||||
refresh:
|
refresh:
|
||||||
cd .minecraft && packwiz refresh
|
cd .minecraft && packwiz refresh
|
||||||
|
|
Loading…
Reference in a new issue