jannet: Fix test for links in rpmnew

This commit is contained in:
Jan Lindemann 2012-02-09 09:05:44 +00:00 committed by Jan Lindemann
commit b8d76c6591

View file

@ -90,7 +90,7 @@ cmd_rpmnew()
while read file; do
if [ -e "$file.rpmnew" ]; then
if diff -q $file $file.rpmnew; then
if [ -l "$file" ]; then
if [ -L "$file" ]; then
echo ========== skipping link $file
continue
fi