fixed release script but it's too late

This commit is contained in:
Anuken
2022-07-16 11:04:44 -04:00
parent d3210a0831
commit 8383d151a3
2 changed files with 2 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ jobs:
cd ../ cd ../
cp -r ./Mindustry ./MindustryJitpack cp -r ./Mindustry ./MindustryJitpack
cd 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 git clone --depth 1 https://github.com/Anuken/MindustryJitpack.git
rm -rf .git rm -rf .git
cp -r ./MindustryJitpack/.git ./.git cp -r ./MindustryJitpack/.git ./.git

View File

@@ -68,7 +68,6 @@ public class SaveIO{
getMeta(stream); getMeta(stream);
return true; return true;
}catch(Throwable e){ }catch(Throwable e){
Log.err(e);
return false; return false;
} }
} }