From 7a17e41dcfad2a45d3acced2596f7359bbcd1075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 5 Feb 2023 21:41:24 +0100 Subject: test: drop whitespace after shell redirection operators (The one case that is left unchanged is '< <(subcommand)'.) This way, the style with no gap was already dominant. This way, the reader immediately knows that ' < ' is a comparison operator and ' << ' is a shift. In a few cases, replace custom EOF replacement by just EOF. There is no point in using someting like "_EOL" unless "EOF" appears in the text. --- tools/debug-sd-boot.sh | 2 +- tools/update-hwdb-autosuspend.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tools') diff --git a/tools/debug-sd-boot.sh b/tools/debug-sd-boot.sh index 1bd2cc406d..027d607a49 100755 --- a/tools/debug-sd-boot.sh +++ b/tools/debug-sd-boot.sh @@ -60,7 +60,7 @@ while read -r line; do data="${BASH_REMATCH[2]}" break fi -done < "${2}" +done <"${2}" if [[ -z "${text}" || -z "${data}" ]]; then echo "Could not determine text and data location." diff --git a/tools/update-hwdb-autosuspend.sh b/tools/update-hwdb-autosuspend.sh index c69773087d..9f5e6e393e 100755 --- a/tools/update-hwdb-autosuspend.sh +++ b/tools/update-hwdb-autosuspend.sh @@ -5,13 +5,13 @@ set -eu cd "${1:?}" (curl --fail -L 'https://chromium.googlesource.com/chromiumos/platform2/+/master/power_manager/udev/gen_autosuspend_rules.py?format=TEXT'; echo) \ - | base64 -d > tools/chromiumos/gen_autosuspend_rules.py + | base64 -d >tools/chromiumos/gen_autosuspend_rules.py -(cat <<%EOF +(cat < hwdb.d/60-autosuspend-fingerprint-reader.hwdb + >hwdb.d/60-autosuspend-fingerprint-reader.hwdb -- cgit v1.2.1