diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-27 06:57:30 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-27 06:57:30 +0000 |
commit | d94b274fd9f4e7a4ef71e25832ab7baedf10bd50 (patch) | |
tree | 4fca7b81cf66405bb6a000ae62fc6457ac5dd404 | |
parent | 6ebdd3c72ba9c2af8fee953218785dee96e3dec6 (diff) |
vendor.sh: don't error if grep -v fails
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/vendor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh index d03434cb..fb7d7cdf 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -747,7 +747,7 @@ modify_mac_addresses() done < "tmp/rom.list" printf "\nThe following GbE NVM words were written in '%s':\n" \ "$archive" - x_ util/nvmutil/nvm tmp/gbe dump | grep -v "bytes read from file" + x_ util/nvmutil/nvm tmp/gbe dump | grep -v "bytes read from file" || : [ "$new_mac" = "restore" ] && \ printf "\nNOTE: User specified setmac 'restore' argument.\n" && \ |