Skip to content

Commit 952f098

Browse files
committed
UWP: Fix logic to download and copy ANGLE
Fixup errors in #85.
1 parent 682393f commit 952f098

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
@@ -308,7 +308,7 @@ if [ "${build_classical}" == "1" ]; then
308308

309309
## UWP (Classical) ##
310310

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

0 commit comments

Comments
 (0)