mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-09 06:04:23 +01:00
fix references to rustlibs in mapmanip.ps1 (#30558)
This commit is contained in:
committed by
GitHub
parent
b4c764a6c1
commit
91a83e7056
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user