[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#58345] [PATCH 2/3] guix-install.sh: Introduce 'die' utility functio
From: |
Maxim Cournoyer |
Subject: |
[bug#58345] [PATCH 2/3] guix-install.sh: Introduce 'die' utility function. |
Date: |
Fri, 07 Oct 2022 08:23:02 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) |
Hello,
zimoun <zimon.toutoune@gmail.com> writes:
> Hi Maxim,
>
> On ven., 07 oct. 2022 at 01:31, Maxim Cournoyer <maxim.cournoyer@gmail.com>
> wrote:
>
>> +die()
>> +{
>> + _err "${ERR}$*"
>> +}
>> +
>
> [...]
>
>> - _err "${ERR}Unsupported CPU type: ${arch}"
>> - exit 1
>> + die "Unsupported CPU type: ${arch}"
>
> This new script using ’die’, does it exit correctly and return an
> appropriated exit code on failure?
Good catch, I had forgotten to include "exit 1" after the _err call in
die().
Fixed!
--
Thanks,
Maxim