diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-08-08 09:19:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 00:19:05 -0700 |
commit | 507e5b74ff21161ba8bd947d7d9cee317c0af379 (patch) | |
tree | 8cfd58d46034803cd296d7b3a159c3f84896ec88 /cli/util/mod.rs | |
parent | 4e4c96bf66111c6e8ba976ed24594edf7abfcbfb (diff) |
fix: Don't shell out to `unzip` in deno upgrade/compile (#24926)
Use the `zip` crate instead
Fixes #23988.
Diffstat (limited to 'cli/util/mod.rs')
-rw-r--r-- | cli/util/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/util/mod.rs b/cli/util/mod.rs index b7eef95d3..b9071c496 100644 --- a/cli/util/mod.rs +++ b/cli/util/mod.rs @@ -1,6 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Note: Only add code in this folder that has no application specific logic +pub mod archive; pub mod checksum; pub mod console; pub mod diff; |