summaryrefslogtreecommitdiff
path: root/cli/tools/standalone.rs
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-03-22 12:55:19 -0600
committerGitHub <noreply@github.com>2023-03-22 12:55:19 -0600
commitcebefa87832244682edeacae81c05b38c2414ca0 (patch)
treefe038b47e130c3867c5bf74e4d1bbdc9f8fe2c89 /cli/tools/standalone.rs
parentdf614ff6e5cc0b3d48534fb20a348412bebea576 (diff)
chore(test_util): replace tempdir code w/tempdir crate (#18340)
Diffstat (limited to 'cli/tools/standalone.rs')
-rw-r--r--cli/tools/standalone.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs
index 93c3aebf0..31f472b78 100644
--- a/cli/tools/standalone.rs
+++ b/cli/tools/standalone.rs
@@ -120,7 +120,7 @@ async fn get_base_binary(
}
let archive_data = tokio::fs::read(binary_path).await?;
- let temp_dir = secure_tempfile::TempDir::new()?;
+ let temp_dir = tempfile::TempDir::new()?;
let base_binary_path = crate::tools::upgrade::unpack_into_dir(
archive_data,
target.contains("windows"),