From a7010e24ea4dc73ce679d49c3065ade52c2bb9d1 Mon Sep 17 00:00:00 2001 From: Andrew Lalis Date: Wed, 27 Jul 2022 16:26:17 +0200 Subject: [PATCH] Upgraded build script. --- build-clients.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-clients.d b/build-clients.d index 355c94c..df2cdaf 100755 --- a/build-clients.d +++ b/build-clients.d @@ -32,7 +32,7 @@ void main() { mkdir(outDir); foreach (profile; profiles) { print("Building profile: %s", profile); - string cmd = format!"mvn -B -Plwjgl-natives-%s --projects client --also-make clean package"(profile); + string cmd = format!"mvn -B -Plwjgl-natives-%s clean package"(profile); new ProcessBuilder() .outputTo(buildPath(outDir, "output-" ~ profile ~ ".txt")) .run(cmd);