File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -199,9 +199,10 @@ if [ ! -d "deps/mesa" ]; then
199199 echo " Missing Mesa/NIR libraries, downloading them."
200200 mkdir -p deps/mesa
201201 pushd deps/mesa
202- curl -L -o mesa_arm64.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-arm64-llvm-release.zip
203- curl -L -o mesa_x86_64.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-x86_64-gcc-release.zip
204- curl -L -o mesa_x86_32.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-x86_32-gcc-release.zip
202+ base_url=https://github.com/godotengine/godot-nir-static/releases/download/25.3.1/godot-nir-static
203+ curl -L -o mesa_arm64.zip $base_url -arm64-llvm-release.zip
204+ curl -L -o mesa_x86_64.zip $base_url -x86_64-gcc-release.zip
205+ curl -L -o mesa_x86_32.zip $base_url -x86_32-gcc-release.zip
205206 unzip -o mesa_arm64.zip && rm -f mesa_arm64.zip
206207 unzip -o mesa_x86_64.zip && rm -f mesa_x86_64.zip
207208 unzip -o mesa_x86_32.zip && rm -f mesa_x86_32.zip
You can’t perform that action at this time.
0 commit comments