Merge pull request #7426 from tianyuanhao/master

Avoid poly_user_note_set twice
This commit is contained in:
Théophane Hufschmitt 2023-01-02 15:15:47 +01:00 committed by GitHub
commit 9c05b80db0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -575,7 +575,7 @@ EOF
# to extract _just_ the user's note, instead it is prefixed with
# some plist junk. This was causing the user note to always be set,
# even if there was no reason for it.
if ! poly_user_note_get "$username" | grep -q "Nix build user $coreid"; then
if poly_user_note_get "$username" | grep -q "Nix build user $coreid"; then
row " Note" "Nix build user $coreid"
else
poly_user_note_set "$username" "Nix build user $coreid"