guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Notes from discussion on Quality Assurance from the 10 Years of Guix


From: zimoun
Subject: Re: Notes from discussion on Quality Assurance from the 10 Years of Guix event
Date: Mon, 24 Oct 2022 09:44:31 +0200

Hi Tanguy,

On dim., 23 oct. 2022 at 17:48, Tanguy LE CARROUR <tanguy@bioneland.org> wrote:

> ```console
> $ guix package -I | awk '{print $1}' | tr '\n' ' ' | xargs guix refresh 2>&1 \
>   | ag -v '(already|failed|no updater|warning|redirection)'
> ```

This pipe is equivalent to,

    guix package --export-manifest > /tmp/my-installed-packages.scm
    guix refresh -m /tmp/my-installed-packages.scm 2>&1 \
     | ag -v '(already|failed|no updater|warning|redirection)'

which is, IMHO, more Guixy. ;-)


Cheers,
simon



reply via email to

[Prev in Thread] Current Thread [Next in Thread]