Avoid poly_user_note_set twice

f06f810 incorrectly introduces a boolean flip, resulting in a senseless
poly_user_note_set even though the user comment has been set correctly.
This commit is contained in:
TIAN Yuanhao 2022-12-14 03:03:12 +00:00
parent 1dd7779c7c
commit 09830ab829
1 changed files with 1 additions and 1 deletions

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"