paru
paru copied to clipboard
paru --version > /dev/full panics
Affected Version
**paru v2.1.0 +git - libalpm v16.0.1
$paru --version > /dev/full
thread 'main' (9895) panicked at library/std/src/io/stdio.rs:1165:9:
failed printing to stdout: No space left on device (os error 28)
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
same
Is this supposed to be an unwanted behavior?
If someone might want to save AUR helper's log to different strage, paru might crush during update process. (--version is just an example.)
Then you can just use a proxy pipe.
paru --version | cat >/dev/full
Here, no crash from paru anymore.