servo/support/not-the-toml-you-re-looking-for.rs
2014-12-02 18:03:39 -08:00

9 lines
215 B
Rust

fn main() {
::std::os::set_exit_status(1);
let _ = ::std::io::stderr().write(br"
This is not the `Cargo.toml` file you're looking for.
Invoke Cargo through mach instead, e.g. `./mach build`.
");
}