aboutsummaryrefslogtreecommitdiff
path: root/export/src/bin/export_project.rs
diff options
context:
space:
mode:
author1992414357@qq.com <1992414357@qq.com>2025-06-13 19:20:06 +0800
committer1992414357@qq.com <1992414357@qq.com>2025-06-13 19:20:06 +0800
commita210ab86ee43dea3b4d9d0f2af5750c5a4adf096 (patch)
tree7111a1c93d1f261d097ff0288c8b879db0830085 /export/src/bin/export_project.rs
parent98dad6afa316b9a44ff76b305520339ddc44c789 (diff)
.
Diffstat (limited to 'export/src/bin/export_project.rs')
-rw-r--r--export/src/bin/export_project.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/export/src/bin/export_project.rs b/export/src/bin/export_project.rs
index 9cdf412..6c6eaaf 100644
--- a/export/src/bin/export_project.rs
+++ b/export/src/bin/export_project.rs
@@ -29,7 +29,7 @@ pub fn main() {
let version = if let Some(v) = args.get(1) { v.to_string() } else { env!("PROJECT_VERSION").to_string() };
let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")).parent().unwrap().to_path_buf();
- let toml_config = root.join("./Config_Export.toml");
+ let toml_config = root.join("../../../Project_Export.toml");
let config: Config = toml::from_str(fs::read_to_string(toml_config).unwrap().as_str())
.expect("Failed to parse TOML");