From 8e4a0cd58498ce417d98c1b5faa096f131a31d5b Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Thu, 16 Jan 2025 18:28:43 +0000 Subject: [PATCH] Remove SHELL=cmd hacks These are not required anymore, now that premake is updated. Fixed in: https://github.com/premake/premake-core/pull/2039 --- .vscode/tasks.json | 7 +------ build-MinGW-W64.bat | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fe93193..82be20f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,9 +9,6 @@ "command": "make", "windows": { "command": "mingw32-make.exe", - "args": [ - "SHELL=cmd" - ], }, "osx": { "args": [ @@ -34,7 +31,6 @@ "windows": { "command": "mingw32-make.exe", "args": [ - "SHELL=cmd", "config=release_x64" ], }, @@ -61,7 +57,6 @@ "windows": { "command": "mingw32-make.exe", "args": [ - "SHELL=cmd", "clean" ], }, @@ -103,4 +98,4 @@ "group": "build" } ] -} \ No newline at end of file +} diff --git a/build-MinGW-W64.bat b/build-MinGW-W64.bat index 379d454..5ceebcc 100644 --- a/build-MinGW-W64.bat +++ b/build-MinGW-W64.bat @@ -1,5 +1,5 @@ cd build premake5.exe gmake2 cd .. -mingw32-make SHELL=CMD clean +mingw32-make clean pause