Mention just package in AUR (#380)
Big thanks to @quininer and @frealgagu for packaging and maintaining the AUR packages!
This commit is contained in:
parent
3d67786aaf
commit
2afef6a13d
@ -82,6 +82,11 @@ On Windows, `just` can be installed using the https://scoop.sh[Scoop package man
|
|||||||
scoop install just
|
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
|
=== 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:
|
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:
|
||||||
|
@ -46,11 +46,11 @@ fn interrupt_test(justfile: &str) {
|
|||||||
|
|
||||||
let elapsed = start.elapsed();
|
let elapsed = start.elapsed();
|
||||||
|
|
||||||
if elapsed > Duration::new(2, 500_000_000) {
|
if elapsed > Duration::new(4, 0) {
|
||||||
panic!("process returned too late: {:?}", elapsed);
|
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);
|
panic!("process returned too early : {:?}", elapsed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user