This commit is contained in:
John Mumm 2025-07-21 17:18:56 +02:00
parent 5801e16a08
commit ab864a676d
No known key found for this signature in database
GPG Key ID: 73D2271AFDC26EA8
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ pub(crate) fn create(
create_link_to_executable(target.as_path(), executable_target.clone())
.map_err(Error::Python)?;
let targetw = scripts.join(WindowsExecutable::Pythonw.exe(interpreter));
create_link_to_executable(targetw.as_path(), executable_target)
create_link_to_executable(targetw.as_path(), executable_target.clone())
.map_err(Error::Python)?;
if interpreter.gil_disabled() {
let targett = scripts.join(WindowsExecutable::PythonMajorMinort.exe(interpreter));