From 89d7f7e7e0b388766a266229d99109ac2e6d50a9 Mon Sep 17 00:00:00 2001 From: "Matthew J. Berger" Date: Tue, 2 Oct 2018 14:39:15 -0700 Subject: [PATCH] Add Scoop installation instructions to readme (#359) --- README.adoc | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.adoc b/README.adoc index 10ff944..b5b67a6 100644 --- a/README.adoc +++ b/README.adoc @@ -68,19 +68,25 @@ curl -LSfs https://japaric.github.io/trust/install.sh | \ === Homebrew -On MacOS, `just` is a available through the https://brew.sh[Homebrew] package manager. Install Homebrew using the instructions at https://brew.sh, then run: +On MacOS, `just` can be installed using the https://brew.sh[Homebrew package manager]. Install Homebrew using the instructions https://brew.sh[here], then run: `brew install just` +=== Scoop + +On Windows, `just` can be installed using the https://scoop.sh[Scoop package manager]. Install Scoop using the instractions https://scoop.sh/[here], then run: + +```powershell +scoop install just +``` + === Cargo -`just` can be installed using `cargo`, the https://www.rust-lang.org[rust language package manager]: +On Windows, Linux, and macOS, `just` can be installed using Cargo, the https://www.rust-lang.org[rust language package manager]. Install Cargo using the instructions https://www.rustup.rs[here], then run: -1. Install rust and cargo by following the instructions https://www.rustup.rs[here] -2. Run `cargo install just` -3. Add `~/.cargo/bin` to your shell's $PATH. +`cargo install just` -`rustup` may have done #3 for you. If this doesn't work, put `export PATH="$HOME/.cargo/bin:$PATH"` in your shell's configuration file +(You might also need to add `~/.cargo/bin` to your shell's `$PATH`. If you can't run just after installing it, put `export PATH="$HOME/.cargo/bin:$PATH"` in your shell's configuration file.) == Quick Start