From 1e33f9c055762d9db387f8ec38f14d12b43b1d20 Mon Sep 17 00:00:00 2001 From: Ben S Date: Wed, 10 Feb 2016 18:21:49 +0000 Subject: [PATCH] Correct Nightly errors in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5bc5738..de0fff3 100644 --- a/Makefile +++ b/Makefile @@ -3,13 +3,13 @@ PREFIX ?= /usr/local BUILD = target/release/exa $(BUILD): - @which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; } + @which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; } cargo build --release build: $(BUILD) build-no-git: - @which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; } + @which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; } cargo build --release --no-default-features INSTALL = $(PREFIX)/bin/exa