mirror of
https://github.com/nab138/isideload.git
synced 2026-03-02 14:36:16 +01:00
rename temp extracted app
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1152,7 +1152,7 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "isideload"
|
name = "isideload"
|
||||||
version = "0.1.12"
|
version = "0.1.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hex",
|
"hex",
|
||||||
"idevice",
|
"idevice",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name = "isideload"
|
|||||||
description = "Sideload iOS/iPadOS applications"
|
description = "Sideload iOS/iPadOS applications"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
authors = ["Nicholas Sharp <nab@nabdev.me>"]
|
authors = ["Nicholas Sharp <nab@nabdev.me>"]
|
||||||
version = "0.1.12"
|
version = "0.1.13"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
repository = "https://github.com/nab138/isideload"
|
repository = "https://github.com/nab138/isideload"
|
||||||
documentation = "https://docs.rs/isideload"
|
documentation = "https://docs.rs/isideload"
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ impl Application {
|
|||||||
|
|
||||||
if path.is_file() {
|
if path.is_file() {
|
||||||
let temp_dir = std::env::temp_dir();
|
let temp_dir = std::env::temp_dir();
|
||||||
let temp_path = temp_dir.join(path.file_name().unwrap());
|
let temp_path = temp_dir
|
||||||
|
.join(path.file_name().unwrap().to_string_lossy().to_string() + "_extracted");
|
||||||
if temp_path.exists() {
|
if temp_path.exists() {
|
||||||
std::fs::remove_dir_all(&temp_path).map_err(|e| Error::Filesystem(e))?;
|
std::fs::remove_dir_all(&temp_path).map_err(|e| Error::Filesystem(e))?;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user