Skip to content

Commit d640fa4

Browse files
committed
Download ANGLE if missing for UWP packaging
1 parent 09b605f commit d640fa4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build-release.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,12 @@ rm -rf ios_xcode
282282

283283
# UWP
284284

285+
if [ ! -d "angle" ]; then
286+
echo "Downloading ANGLE binaries from https://github.com/GodotBuilder/godot-builds/releases/tag/_tools"
287+
curl -LO https://github.com/GodotBuilder/godot-builds/releases/download/_tools/angle.7z
288+
7z x angle.7z && rm -f angle.7z
289+
fi
290+
285291
mkdir -p templates
286292
rm -f templates/uwp*
287293
rm -rf uwp_template_*

0 commit comments

Comments
 (0)