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