From d640fa4c699dfd44e87049fea874e80fac93b5b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 13 Nov 2019 16:30:03 +0100 Subject: [PATCH] Download ANGLE if missing for UWP packaging --- build-release.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-release.sh b/build-release.sh index 98cfa28..de6ac54 100755 --- a/build-release.sh +++ b/build-release.sh @@ -282,6 +282,12 @@ rm -rf ios_xcode # UWP +if [ ! -d "angle" ]; then + echo "Downloading ANGLE binaries from https://github.com/GodotBuilder/godot-builds/releases/tag/_tools" + curl -LO https://github.com/GodotBuilder/godot-builds/releases/download/_tools/angle.7z + 7z x angle.7z && rm -f angle.7z +fi + mkdir -p templates rm -f templates/uwp* rm -rf uwp_template_*