diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-09 10:55:33 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-09 10:55:33 +0100 |
commit | 26df6e7ab29cc745e40beae867310089fe0a7cf3 (patch) | |
tree | 00ecbf6fe0eab62714ffb1b5018db71475a461d9 /include | |
parent | 9cdf419295a248e8853ca7c9cc98df90990aca6c (diff) |
lib.sh: simplify singletree()
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-x | include/lib.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/lib.sh b/include/lib.sh index 9d66ea8d..fa15bd6a 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -223,8 +223,7 @@ e() singletree() { for targetfile in "config/${1}/"*/target.cfg; do - [ ! -e "$targetfile" ] && continue - [ -f "$targetfile" ] && return 1 + [ -e "$targetfile" ] && [ -f "$targetfile" ] && return 1 done } |