Skip to main content

rootcx_platform/
shell.rs

1pub fn shell_command() -> (&'static str, &'static str) {
2    if cfg!(windows) { ("cmd", "/C") } else { ("sh", "-c") }
3}