mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-12-21 11:01:40 +00:00
fix: make sure VIRTUAL_ENV is an absolute path (#224)
Closes https://github.com/astral-sh/setup-uv/issues/219
This commit is contained in:
2
dist/setup/index.js
generated
vendored
2
dist/setup/index.js
generated
vendored
@@ -99397,7 +99397,7 @@ function setupPython() {
|
|||||||
venvBinPath = ".venv/Scripts";
|
venvBinPath = ".venv/Scripts";
|
||||||
}
|
}
|
||||||
core.addPath(venvBinPath);
|
core.addPath(venvBinPath);
|
||||||
core.exportVariable("VIRTUAL_ENV", ".venv");
|
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ async function setupPython(): Promise<void> {
|
|||||||
venvBinPath = ".venv/Scripts";
|
venvBinPath = ".venv/Scripts";
|
||||||
}
|
}
|
||||||
core.addPath(venvBinPath);
|
core.addPath(venvBinPath);
|
||||||
core.exportVariable("VIRTUAL_ENV", ".venv");
|
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user