From 998ab779573fefd8a71695b05c5a29788c6d6de9 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 16 Apr 2015 14:23:29 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20"Not=20the=20toml=20you=E2=80=99re=20l?= =?UTF-8?q?ooking=20for".?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s been broken for a while and nobody noticed. --- Cargo.toml | 10 ---------- support/not-the-toml-you-re-looking-for.rs | 9 --------- 2 files changed, 19 deletions(-) delete mode 100644 Cargo.toml delete mode 100644 support/not-the-toml-you-re-looking-for.rs diff --git a/Cargo.toml b/Cargo.toml deleted file mode 100644 index bc186d02ccf..00000000000 --- a/Cargo.toml +++ /dev/null @@ -1,10 +0,0 @@ -[package] - -name = "not-the-toml-you-re-looking-for" -version = "0.0.1" -authors = ["The Servo Project Developers"] - -build = "support/not-the-toml-you-re-looking-for.rs" - -[lib] -name = "not-the-toml-you-re-looking-for" diff --git a/support/not-the-toml-you-re-looking-for.rs b/support/not-the-toml-you-re-looking-for.rs deleted file mode 100644 index caf7bde3edd..00000000000 --- a/support/not-the-toml-you-re-looking-for.rs +++ /dev/null @@ -1,9 +0,0 @@ -fn main() { - ::std::os::set_exit_status(1); - let _ = ::std::old_io::stderr().write(br" - - This is not the `Cargo.toml` file you're looking for. - Invoke Cargo through mach instead, e.g. `./mach build`. - -"); -}