+2
-2
src/utils/gd_utils.rs
+2
-2
src/utils/gd_utils.rs
···
27
27
}
28
28
29
29
pub(crate) fn decomp_file(path: &str) {
30
-
dbg!(Command::new(RE_TOOLS)
30
+
Command::new(RE_TOOLS)
31
31
.arg("--headless")
32
32
.arg(format!("--decompile=\"{}\"", path))
33
33
.arg("--bytecode=3.5.0")
34
34
.arg("--output-dir=build/webfishing-decomp")
35
-
.output().expect(format!("Failed to decompile file: {}", path).as_str()));
35
+
.output().expect(format!("Failed to decompile file: {}", path).as_str());
36
36
}
37
37
38
38
pub(crate) fn recomp_file(path: &str) {