copy-firmware.sh: Fix typo in error message.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Maxim Cournoyer 2025-01-02 22:21:45 +09:00 committed by Mario Limonciello
parent 2b781910a7
commit 729c0c8e5c

View File

@ -141,7 +141,7 @@ fi
# Verify no broken symlinks
if test "$(find "$destdir" -xtype l | wc -l)" -ne 0 ; then
err "Broken symlinks found:\\n$(find "$destdir" -xtype l)"
err "Broken symlinks found:\n$(find "$destdir" -xtype l)"
fi
exit 0