From 19a0b5b0ea8b33a8a909f64b15b6d22c8deb3a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois-Guillaume=20RIBREAU?= Date: Wed, 3 Jan 2018 08:34:42 +0100 Subject: [PATCH] fix(rust): remove autodetect --- packs/rust/detect | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 packs/rust/detect diff --git a/packs/rust/detect b/packs/rust/detect deleted file mode 100644 index 52fb4d1..0000000 --- a/packs/rust/detect +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -BUILD_DIR=$1 - -# Exit early if app is clearly not Rust. -if [ ! -f $BUILD_DIR/Cargo.lock ] && [ ! -f $BUILD_DIR/Cargo.toml ]; then - exit 1 -fi - -echo Rust