From 6360b4a1d7d4972e5cb68ccd3aed66abd0c3a538 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 22 Sep 2024 16:42:48 +0100 Subject: [PATCH] copy-firmware.sh: fix indentation Signed-off-by: Emil Velikov --- copy-firmware.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/copy-firmware.sh b/copy-firmware.sh index 65a1b39b..f83b4775 100755 --- a/copy-firmware.sh +++ b/copy-firmware.sh @@ -58,8 +58,8 @@ while test $# -gt 0; do done if test -z "$destdir"; then - echo "ERROR: destination directory was not specified" - exit 1 + echo "ERROR: destination directory was not specified" + exit 1 fi # shellcheck disable=SC2162 # file/folder name can include escaped symbols @@ -115,9 +115,9 @@ done # Verify no broken symlinks if test "$(find "$destdir" -xtype l | wc -l)" -ne 0 ; then - echo "ERROR: Broken symlinks found:" - find "$destdir" -xtype l - exit 1 + echo "ERROR: Broken symlinks found:" + find "$destdir" -xtype l + exit 1 fi exit 0