diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-28 12:02:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-28 12:02:21 -0400 |
| commit | af473ce15cf0c454214e939efa2f7cf3483df50d (patch) | |
| tree | 5d951c006e7c116b3317d0559e2c7167a11d5738 | |
| parent | 317f13b63f91a6c3ed7c5996432ed326d66b1e3b (diff) | |
fix(task): handle `PATHEXT` with trailing semi-colon (#14140)
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 11cd1c798..3db80a186 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1088,9 +1088,9 @@ dependencies = [ [[package]] name = "deno_task_shell" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f7cfd6605b7291387e54a732e5b5fa8c1fb0d6757dbf4309740ad79c1e1e215" +checksum = "a207191380d076a31b0bde505cd89ffa0a7336be0a9e17017afa8cf91d35499b" dependencies = [ "anyhow", "futures", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4375ce91d..118b7e7c9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -51,7 +51,7 @@ deno_doc = "0.33.0" deno_graph = "0.25.0" deno_lint = { version = "0.28.0", features = ["docs"] } deno_runtime = { version = "0.52.0", path = "../runtime" } -deno_task_shell = "0.2.0" +deno_task_shell = "0.2.1" atty = "=0.2.14" base64 = "=0.13.0" |
