From 2afef6a13d1c2cff1006e32ff67029b9ded365a3 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 18 Dec 2018 20:27:27 -0800 Subject: [PATCH] Mention just package in AUR (#380) Big thanks to @quininer and @frealgagu for packaging and maintaining the AUR packages! --- README.adoc | 5 +++++ tests/interrupts.rs | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index cfdf328..1a3f94e 100644 --- a/README.adoc +++ b/README.adoc @@ -82,6 +82,11 @@ On Windows, `just` can be installed using the https://scoop.sh[Scoop package man scoop install just ``` +=== Arch Linux + +On Arch Linux, `just` is packaged as https://aur.archlinux.org/packages/just/[just] in AUR, the https://aur.archlinux.org[Arch User Repository]. Several tools are available to install packages from AUR, including https://github.com/Jguer/yay[yay] and https://github.com/archlinuxfr/yaourt[yaourt]. + + === Cargo 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: diff --git a/tests/interrupts.rs b/tests/interrupts.rs index c94f23e..caddb77 100644 --- a/tests/interrupts.rs +++ b/tests/interrupts.rs @@ -46,11 +46,11 @@ fn interrupt_test(justfile: &str) { let elapsed = start.elapsed(); - if elapsed > Duration::new(2, 500_000_000) { + if elapsed > Duration::new(4, 0) { panic!("process returned too late: {:?}", elapsed); } - if elapsed < Duration::new(1, 500_000_000) { + if elapsed < Duration::new(1, 0) { panic!("process returned too early : {:?}", elapsed); }