From 4884c2328378b8840692a47ba158b3668236a247 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 9 Sep 2017 18:56:03 +0200 Subject: [PATCH] Update development instructions --- Cargo.toml | 2 +- README.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f747681..9fe49d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fd" -version = "2.0.0" +version = "3.0.0" authors = ["David Peter "] [dependencies] diff --git a/README.md b/README.md index 3ccbcca..45db03f 100644 --- a/README.md +++ b/README.md @@ -116,5 +116,19 @@ makepkg -si ## Development ```bash -cargo build --release +git clone https://github.com/sharkdp/fd + +# Build +cd fd +cargo build + +# Run unit tests +cargo test + +# Run integration tests +cd tests +bash test.sh + +# Install +cargo install ```