Skip to content

Commit eaed971

Browse files
committed
[NO TESTS] WIP
1 parent 51c35b4 commit eaed971

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

py/tools/py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ rust_library(
1919
"//py/tools/venv_bin:__pkg__",
2020
],
2121
deps = [
22+
"//py/tools/runfiles",
2223
"@crate_index//:itertools",
2324
"@crate_index//:miette",
2425
"@crate_index//:pathdiff",
@@ -33,6 +34,5 @@ rust_library(
3334
"@crate_index//:uv-python",
3435
"@crate_index//:uv-virtualenv",
3536
"@crate_index//:walkdir",
36-
"//py/tools/runfiles",
3737
],
3838
)

py/tools/runfiles/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ mod test {
352352
/// A mutex used to guard
353353
static GLOBAL_MUTEX: OnceLock<Mutex<i32>> = OnceLock::new();
354354

355-
/// Mock out environment variables for a given body fo work. Very similar to
355+
/// Mock out environment variables for a given body to work. Very similar to
356356
/// [temp-env](https://crates.io/crates/temp-env).
357357
fn with_mock_env<K, V, F, R>(kvs: impl AsRef<[(K, Option<V>)]>, closure: F) -> R
358358
where

py/tools/venv_shim/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ rust_binary(
66
"src/main.rs",
77
],
88
deps = [
9-
"@crate_index//:miette",
109
"//py/tools/runfiles",
10+
"@crate_index//:miette",
1111
],
1212
)
1313

py/tools/venv_shim/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ fn main() -> miette::Result<()> {
218218
// location on Linux-based platforms.
219219
cmd.arg0(&venv_interpreter);
220220

221-
// Psuedo-`activate`
221+
// Pseudo-`activate`
222222
cmd.env("VIRTUAL_ENV", &venv_root.to_str().unwrap());
223223
let venv_bin = (&venv_root).join("bin").to_str().unwrap().to_owned();
224224
if let Ok(current_path) = var("PATH") {

0 commit comments

Comments
 (0)