Mention just package in AUR (#380)

Big thanks to @quininer and @frealgagu for packaging and maintaining the AUR packages!
This commit is contained in:
Casey Rodarmor 2018-12-18 20:27:27 -08:00 committed by GitHub
parent 3d67786aaf
commit 2afef6a13d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -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:

View File

@ -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);
}