Skip to content

Commit bd3ec27

Browse files
committed
UWP: Fix logic to download and copy ANGLE
Fixup errors in #85. (cherry picked from commit 952f098)
1 parent 2f690a7 commit bd3ec27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ if [ "${build_classical}" == "1" ]; then
306306

307307
## UWP (Classical) ##
308308

309-
if [ ! -d "deps/angle" ]; then
309+
if [ ! -d "deps/angle-uwp" ]; then
310310
echo "Downloading ANGLE binaries from https://github.com/godotengine/godot-build-scripts/releases/tag/_deps/"
311311
mkdir -p deps && cd deps
312312
curl -L -o angle-uwp.7z https://github.com/godotengine/godot-build-scripts/releases/download/_deps/angle-uwp-2.1.13.7z
@@ -318,7 +318,7 @@ if [ "${build_classical}" == "1" ]; then
318318
for arch in ARM Win32 x64; do
319319
cp -r git/misc/dist/uwp_template uwp_template_${arch}
320320
cp deps/angle-uwp/${arch}/libEGL.dll \
321-
cp deps/angle-uwp/${arch}/libGLESv2.dll \
321+
deps/angle-uwp/${arch}/libGLESv2.dll \
322322
uwp_template_${arch}/
323323
cp -r uwp_template_${arch} uwp_template_${arch}_debug
324324
done

0 commit comments

Comments
 (0)