summaryrefslogtreecommitdiff
path: root/test/test-functions
diff options
context:
space:
mode:
authorThomas Blume <Thomas.Blume@suse.com>2023-04-04 15:13:13 +0200
committerLuca Boccassi <luca.boccassi@gmail.com>2023-04-04 20:39:11 +0100
commitd6d06616319ef41ae2f6fcc4812764de2295cd7e (patch)
tree1bf03bb49d26cc4dea2b7450f8b458f20c84d16c /test/test-functions
parent45ed795f41426c1d40aa93bedb6875f5f600ef85 (diff)
downloadsystemd-d6d06616319ef41ae2f6fcc4812764de2295cd7e.tar.gz
test/test-functions: fix typo in install_suse_systemd()
Diffstat (limited to 'test/test-functions')
-rw-r--r--test/test-functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-functions b/test/test-functions
index bc72ba43fe..de553afb50 100644
--- a/test/test-functions
+++ b/test/test-functions
@@ -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