tangled
alpha
login
or
join now
regnault.dev
/
webfishing-macos-installer
0
fork
atom
A native webfishing installer for macos
0
fork
atom
overview
issues
pulls
pipelines
1.2.1 - Remove aggressive logging
regnault.dev
1 year ago
f1f251ec
29029bea
+2
-2
1 changed file
expand all
collapse all
unified
split
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
30
-
dbg!(Command::new(RE_TOOLS)
30
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
35
-
.output().expect(format!("Failed to decompile file: {}", path).as_str()));
35
35
+
.output().expect(format!("Failed to decompile file: {}", path).as_str());
36
36
}
37
37
38
38
pub(crate) fn recomp_file(path: &str) {