File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -148,11 +148,12 @@ if [ ! -d "deps/angle" ]; then
148
148
echo " Missing ANGLE libraries, downloading them."
149
149
mkdir -p deps/angle
150
150
pushd deps/angle
151
- curl -L -o windows_arm64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-arm64-llvm-release.zip
152
- curl -L -o windows_x86_64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_64-gcc-release.zip
153
- curl -L -o windows_x86_32.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_32-gcc-release.zip
154
- curl -L -o macos_arm64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-arm64-macos-release.zip
155
- curl -L -o macos_x86_64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_64-macos-release.zip
151
+ base_url=https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601.1/godot-angle-static
152
+ curl -L -o windows_arm64.zip $base_url -arm64-llvm-release.zip
153
+ curl -L -o windows_x86_64.zip $base_url -x86_64-gcc-release.zip
154
+ curl -L -o windows_x86_32.zip $base_url -x86_32-gcc-release.zip
155
+ curl -L -o macos_arm64.zip $base_url -arm64-macos-release.zip
156
+ curl -L -o macos_x86_64.zip $base_url -x86_64-macos-release.zip
156
157
unzip -o windows_arm64.zip && rm -f windows_arm64.zip
157
158
unzip -o windows_x86_64.zip && rm -f windows_x86_64.zip
158
159
unzip -o windows_x86_32.zip && rm -f windows_x86_32.zip
You can’t perform that action at this time.
0 commit comments