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

This commit is contained in:
Thomas Blume 2023-04-04 15:13:13 +02:00 committed by Luca Boccassi
parent 45ed795f41
commit d6d0661631

View file

@ -1186,7 +1186,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