]> git.ipfire.org Git - thirdparty/linux-firmware.git/commitdiff
copy-firmware.sh: Fix typo in error message.
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>
Thu, 2 Jan 2025 13:21:45 +0000 (22:21 +0900)
committerMario Limonciello <superm1@gmail.com>
Mon, 6 Jan 2025 03:05:13 +0000 (03:05 +0000)
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
copy-firmware.sh

index f703443e8e263580e38037a5b2a2d1a01853e162..c78c5bd19dc71b98f7a33078026944f9ef42ed10 100755 (executable)
@@ -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