1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-08 20:58:20 +03:00

test/test-functions: fix typo in install_suse_systemd()

(cherry picked from commit d6d06616319ef41ae2f6fcc4812764de2295cd7e)
(cherry picked from commit 4c65c644d6227dadedb317ae500a929e92f365fd)
(cherry picked from commit 1f8ec0ed38405367e8d79f715aad6b0b24775989)
This commit is contained in:
Thomas Blume 2023-04-04 15:13:13 +02:00 committed by Luca Boccassi
parent 4b1da60389
commit d277048bb4

View File

@ -1103,7 +1103,7 @@ install_suse_systemd() {
ddebug "Install files from package $p"
while read -r f; do
[ -e "$f" ] || continue
[ ! -L "$file" ] && [ -d "$file" ] && continue
[ ! -L "$f" ] && [ -d "$f" ] && continue
inst "$f"
done < <(rpm -ql "$p")
done