From 08ff686609b5e9252a42f5fd58bae4c3ead0dca6 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 29 Jun 2021 16:00:58 +0200 Subject: [PATCH] pacmc: Add hash to fix autoupdate `bin/checkver.ps1` requires a hash to be present to save the new manifest correctly. --- bucket/pacmc.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/bucket/pacmc.json b/bucket/pacmc.json index a22b3f81..5f22aa6b 100644 --- a/bucket/pacmc.json +++ b/bucket/pacmc.json @@ -1,22 +1,23 @@ { - "version": "0.1.2", + "version": "0.1.3", "description": "An easy to use package manager for Fabric Minecraft mods", + "homepage": "https://github.com/bluefireoly/pacmc", "license": "GPL-3.0-or-later", - "url": "https://github.com/bluefireoly/pacmc/releases/download/0.1.2/pacmc-0.1.2.zip", + "url": "https://github.com/bluefireoly/pacmc/releases/download/0.1.3/pacmc-0.1.3.zip", + "hash": "0468fdb74aadf4fd4330c698b3a089ad7b5eb1cee2cb54e85c7b50600d8e266e", "extract_dir": "pacmc-0.1.2", "bin": "bin/pacmc.bat", - "autoupdate": { - "url": "https://github.com/bluefireoly/pacmc/releases/download/$version/pacmc-$version.zip", - "extract_dir": "pacmc-$version" - }, - "checkver": { - "github": "https://github.com/bluefireoly/pacmc" - }, "suggest": { "JDK": [ "java/oraclejdk", "java/openjdk" ] }, - "homepage": "https://github.com/bluefireoly/pacmc" + "checkver": { + "github": "https://github.com/bluefireoly/pacmc" + }, + "autoupdate": { + "url": "https://github.com/bluefireoly/pacmc/releases/download/$version/pacmc-$version.zip", + "extract_dir": "pacmc-$version" + } }