From 8383d151a3d8b6e48979604d3ce4369898027a67 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 16 Jul 2022 11:04:44 -0400 Subject: [PATCH] fixed release script but it's too late --- .github/workflows/deployment.yml | 2 ++ core/src/mindustry/io/SaveIO.java | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 39312e54fe..ae8466d9f4 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -29,6 +29,8 @@ jobs: cd ../ cp -r ./Mindustry ./MindustryJitpack cd MindustryJitpack + git config --global user.name "Github Actions" + git config --global user.email "actions@github.com" git clone --depth 1 https://github.com/Anuken/MindustryJitpack.git rm -rf .git cp -r ./MindustryJitpack/.git ./.git diff --git a/core/src/mindustry/io/SaveIO.java b/core/src/mindustry/io/SaveIO.java index 6a828799b8..41888cbb41 100644 --- a/core/src/mindustry/io/SaveIO.java +++ b/core/src/mindustry/io/SaveIO.java @@ -68,7 +68,6 @@ public class SaveIO{ getMeta(stream); return true; }catch(Throwable e){ - Log.err(e); return false; } }