From 7d126130511e909e1fb6d5610fa85c6ea43699c4 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Thu, 20 Oct 2022 16:03:06 +0100 Subject: [PATCH] (build) Ensure ReleaseOfficial configuration used When executing the build.official.sh file, the intention is clear that the ReleaseOfficial configuration is being used. This is what is done in the build.official.bat file, however, this was missed in the .sh file. This came up as a problem when running builds on POSIX for the purposes of doing the Docker image creations. --- build.official.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.official.sh b/build.official.sh index 7d4ee2aba9..aa3f59f562 100755 --- a/build.official.sh +++ b/build.official.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash set -eo pipefail -./build.sh --configuration=Release $* \ No newline at end of file +./build.sh --configuration=ReleaseOfficial $* \ No newline at end of file