fix additional python paths for windows

This commit is contained in:
Ruben Fiszel
2025-06-18 18:24:54 +02:00
parent ff94b5d2d6
commit cf7859cb77
@@ -674,7 +674,14 @@ except BaseException as e:
// ^^^^^^ ^
// We also want this be priorotized, that's why we insert it to the beginning
}
paths.iter().join(":")
#[cfg(windows)]
{
paths.iter().join(";")
}
#[cfg(not(windows))]
{
paths.iter().join(":")
}
};
#[cfg(windows)]