From 3b78451f2300c5ea7a614fe3a245bbde98ffd89b Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 27 Sep 2016 22:57:30 -0700 Subject: [PATCH] Update stuff --- Cargo.lock | 2 +- Cargo.toml | 1 - README.md | 4 ++++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cec2092..f812033 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "j" -version = "0.1.0" +version = "0.1.1" dependencies = [ "brev 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 2efa682..a426709 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,5 +7,4 @@ description = "a command runner" homepage = "https://github.com/casey/j" [dependencies] - brev = "0.1.6" diff --git a/README.md b/README.md index f3464da..ef3209c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ Adding one argument specifies the recipe: `j compile` +Multiple recipes can be run in order: + +`j lint compile test` + Arguments after `--` are exported as `ARG0, ARG1, ..., ARGN`, which can be used in the justfile. To run recipe `compile` and export `ARG0=bar` and `ARG1=baz`: `just compile -- bar baz`