From 91a83e7056055d2cb6b6fd6dfd64de2e9bfef7d4 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Wed, 1 Oct 2025 12:24:47 -0400 Subject: [PATCH] fix references to rustlibs in mapmanip.ps1 (#30558) --- tools/rustlibs_tools/mapmanip.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/rustlibs_tools/mapmanip.ps1 b/tools/rustlibs_tools/mapmanip.ps1 index 27a70934214..d7a9f3fd30b 100644 --- a/tools/rustlibs_tools/mapmanip.ps1 +++ b/tools/rustlibs_tools/mapmanip.ps1 @@ -12,14 +12,14 @@ echo "Should launch the actual server to get stacktraces and the like." echo "*****" # find path to rustlibs.dll -if (Test-Path "./rust/target/i686-pc-windows-msvc/release/rustlibs_515.dll") { - $BapiPath = "./rust/target/i686-pc-windows-msvc/release/rustlibs_515.dll" +if (Test-Path "./rust/target/i686-pc-windows-msvc/release/rustlibs.dll") { + $BapiPath = "./rust/target/i686-pc-windows-msvc/release/rustlibs.dll" } -elseif (Test-Path "./rust/target/i686-pc-windows-msvc/debug/rustlibs_515.dll") { - $BapiPath = "./rust/target/i686-pc-windows-msvc/debug/rustlibs_515.dll" +elseif (Test-Path "./rust/target/i686-pc-windows-msvc/debug/rustlibs.dll") { + $BapiPath = "./rust/target/i686-pc-windows-msvc/debug/rustlibs.dll" } -elseif (Test-Path "./rustlibs_515.dll") { - $BapiPath = "./rustlibs_515.dll" +elseif (Test-Path "./rustlibs.dll") { + $BapiPath = "./rustlibs.dll" } else { echo "Cannot find rustlibs."