Disable maven artifact checksum verification because Mojang keeps breaking it

(and so do some maven repos) and I can't be bothered to constantly fix it.
This commit is contained in:
Jonas Herzig
2018-08-22 14:07:03 +02:00
parent 34343a809f
commit b6a7d3bcda
2 changed files with 1 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ popd
java -Dproxywitness.httpUris=http://export.mcpbot.bspk.rs/versions.json \
-Dproxywitness.useCache=false \
-jar deps/proxy-witness/build/libs/proxy-witness.jar \
"$PROXY_PORT" checksums.txt > proxy.log 2>&1 &
"$PROXY_PORT" checksums.empty.txt > proxy.log 2>&1 &
proxy_pid=$!
trap "kill $proxy_pid" EXIT