From 63af4d2fc633be32aa800be5f610f1b4177bc4e8 Mon Sep 17 00:00:00 2001 From: William Niemiec Date: Tue, 25 May 2021 17:01:15 -0300 Subject: [PATCH] Zip - already exists - fix --- CONTRIBUTING.md | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 12308a8..7a58049 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -53,6 +53,7 @@ After making changes to the project, create a pull request with the project you #### Requirements - Operating system: Windows +- Powershell - MinGW version: [17.1+](https://nuwen.net/mingw.html) - [Choco](https://chocolatey.org/install) diff --git a/Makefile b/Makefile index cf6e0b3..ca10e03 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ after_release: cp src/pokemaze/engine/shader/shader_vertex.glsl dist/$(MAJOR_VERSION).x/$(VERSION)/src/pokemaze/engine/shader/shader_vertex.glsl cp src/pokemaze/engine/shader/shader_fragment.glsl dist/$(MAJOR_VERSION).x/$(VERSION)/src/pokemaze/engine/shader/shader_fragment.glsl cp -R media dist/$(MAJOR_VERSION).x/$(VERSION) - powershell Compress-Archive dist/$(MAJOR_VERSION).x/$(VERSION) dist/$(MAJOR_VERSION).x/$(VERSION)/pokemaze-$(VERSION).zip + powershell Compress-Archive -Force dist/$(MAJOR_VERSION).x/$(VERSION) dist/$(MAJOR_VERSION).x/$(VERSION)/pokemaze-$(VERSION).zip release: before_release out_release after_release